メインコンテンツへスキップ
POST
/
crm
/
extensions
/
cards-dev
/
2026-03
/
{appId}
新規カードを作成
curl --request POST \
  --url https://api.hubapi.com/crm/extensions/cards-dev/2026-03/{appId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "actions": {
    "baseUrls": [
      "<string>"
    ]
  },
  "display": {
    "properties": [
      {
        "dataType": "BOOLEAN",
        "label": "<string>",
        "name": "<string>",
        "options": [
          {
            "label": "<string>",
            "name": "<string>",
            "type": "DANGER"
          }
        ]
      }
    ]
  },
  "fetch": {
    "cardType": "EXTERNAL",
    "objectTypes": [
      {
        "name": "companies",
        "propertiesToSend": [
          "<string>"
        ]
      }
    ],
    "targetUrl": "<string>",
    "serverlessFunction": "<string>"
  },
  "title": "<string>"
}
'
{
  "actions": {
    "baseUrls": [
      "<string>"
    ]
  },
  "auditHistory": [
    {
      "actionType": "CREATE",
      "applicationId": 123,
      "authSource": "APP",
      "changedAt": 123,
      "initiatingUserId": 123,
      "objectTypeId": 123
    }
  ],
  "display": {
    "properties": [
      {
        "dataType": "BOOLEAN",
        "label": "<string>",
        "name": "<string>",
        "options": [
          {
            "label": "<string>",
            "name": "<string>",
            "type": "DANGER"
          }
        ]
      }
    ]
  },
  "fetch": {
    "objectTypes": [
      {
        "name": "companies",
        "propertiesToSend": [
          "<string>"
        ]
      }
    ],
    "targetUrl": "<string>"
  },
  "id": "<string>",
  "title": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.jp/docs/llms.txt

Use this file to discover all available pages before exploring further.

Supported products

承認

Authorization
string
header
必須

The access token received from the authorization server in the OAuth 2.0 flow.

パスパラメータ

appId
integer<int32>
必須

旧CRMカードが含まれるアプリのappId

ボディ

application/json
actions
object
必須
display
object
必須
fetch
object
必須
title
string
必須

このカードのトップレベルタイトル。CRM UIのユーザーに表示されます。

レスポンス

successful operation

actions
object
必須
auditHistory
object[]
必須

作成、削除、更新など、カードで実行されるアクションのリスト。

display
object
必須
fetch
object
必須
id
string
必須

カードの固有ID。

title
string
必須

このカードのトップレベルタイトル。CRM UIのユーザーに表示されます。

createdAt
string<date-time>

カードが作成された日時。

updatedAt
string<date-time>

カードが最後に更新された日時。

Last modified on April 13, 2026