Passer au contenu principal
PATCH
/
crm
/
extensions
/
cards-dev
/
2026-03
/
{appId}
/
{cardId}
Mettre à jour une carte
curl --request PATCH \
  --url https://api.hubapi.com/crm/extensions/cards-dev/2026-03/{appId}/{cardId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "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

Autorisations

Authorization
string
header
requis

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

Paramètres de chemin

appId
integer<int32>
requis
cardId
string
requis

Corps

application/json
actions
object
display
object
fetch
object
title
string

Le titre de niveau supérieur pour cette carte. Affiché aux utilisateurs dans l'interface CRM.

Réponse

successful operation

actions
object
requis
auditHistory
object[]
requis

Une liste des actions effectuées sur la carte, y compris la création, la suppression et les mises à jour.

display
object
requis
fetch
object
requis
id
string
requis

L'ID unique de la carte.

title
string
requis

Le titre de niveau supérieur pour cette carte. Affiché aux utilisateurs dans l'interface CRM.

createdAt
string<date-time>

La date et l'heure de création de la carte.

updatedAt
string<date-time>

La date et heure de la dernière mise à jour de la carte.

Last modified on April 13, 2026