Passer au contenu principal
POST
/
crm
/
v3
/
extensions
/
cards-dev
/
{appId}
Créer une nouvelle carte
curl --request POST \
  --url https://api.hubapi.com/crm/v3/extensions/cards-dev/{appId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "actions": {
    "baseUrls": [
      "https://www.example.com/hubspot"
    ]
  },
  "display": {
    "properties": [
      {
        "dataType": "STRING",
        "label": "Pets Name",
        "name": "pet_name"
      }
    ]
  },
  "fetch": {
    "objectTypes": [
      {
        "name": "contacts",
        "propertiesToSend": [
          "email",
          "firstname"
        ]
      }
    ],
    "targetUrl": "https://www.example.com/hubspot/target"
  },
  "title": "PetSpot"
}
'
{
  "actions": {
    "baseUrls": [
      "https://www.example.com/hubspot"
    ]
  },
  "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.fr/docs/llms.txt

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

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

L'ID de l'application qui doit contenir la carte CRM héritée

Corps

application/json

State of card definition to be created

actions
object
requis

Configuration for custom user actions on cards.

Exemple:
{
"baseUrls": ["https://www.example.com/hubspot"]
}
display
object
requis

Configuration for displayed info on a card

fetch
object
requis

Configuration for this card's data fetch request.

title
string
requis

Le titre de niveau supérieur de cette carte, affiché aux utilisateurs dans l'interface utilisateur du CRM. Il s'agit d'une chaîne de caractères.

Réponse

successful operation

actions
object
requis

Configuration for custom user actions on cards.

Exemple:
{
"baseUrls": ["https://www.example.com/hubspot"]
}
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

Configuration for displayed info on a card

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