Skip to main content
PATCH
/
crm
/
extensions
/
cards-dev
/
2026-03
/
{appId}
/
{cardId}
cURL
curl --request PATCH \
  --url 'https://api.hubapi.com/crm/extensions/cards-dev/2026-03/{appId}/{cardId}?hapikey=' \
  --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": {
    "objectTypes": [
      {
        "name": "companies",
        "propertiesToSend": [
          "<string>"
        ]
      }
    ],
    "cardType": "EXTERNAL",
    "serverlessFunction": "<string>",
    "targetUrl": "<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"
}

Supported products

Authorizations

hapikey
string
query
required

Path Parameters

appId
integer<int32>
required
cardId
string
required

Body

application/json
actions
object
display
object
fetch
object
title
string

The top-level title for this card. Displayed to users in the CRM UI.

Response

successful operation

actions
object
required
auditHistory
object[]
required

A list of actions performed on the card, including creation, deletion, and updates.

display
object
required
fetch
object
required
id
string
required

The unique id of the card.

title
string
required

The top-level title for this card, displayed to users in the CRM UI.

createdAt
string<date-time>

The date and time when the card was created.

updatedAt
string<date-time>

The date and time when the card was last updated.

Last modified on March 31, 2026