Saltar al contenido principal
GET
/
crm
/
extensions
/
cards-dev
/
2026-03
/
{appId}
/
{cardId}
Obtén una tarjeta.
curl --request GET \
  --url https://api.hubapi.com/crm/extensions/cards-dev/2026-03/{appId}/{cardId} \
  --header 'Authorization: Bearer <token>'
{
  "actions": {
    "baseUrls": [
      "<string>"
    ]
  },
  "auditHistory": [
    {
      "applicationId": 123,
      "changedAt": 123,
      "initiatingUserId": 123,
      "objectTypeId": 123
    }
  ],
  "display": {
    "properties": [
      {
        "label": "<string>",
        "name": "<string>",
        "options": [
          {
            "label": "<string>",
            "name": "<string>"
          }
        ]
      }
    ]
  },
  "fetch": {
    "objectTypes": [
      {
        "propertiesToSend": [
          "<string>"
        ]
      }
    ],
    "targetUrl": "<string>"
  },
  "id": "<string>",
  "title": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Supported products

Autorizaciones

Authorization
string
header
requerido

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

Parámetros de ruta

appId
integer<int32>
requerido

El appId de la aplicación que contiene las tarjetas del CRM anteriores

cardId
string
requerido

El ID de la tarjeta del CRM anterior

Respuesta

successful operation

actions
object
requerido
auditHistory
object[]
requerido

Una lista de acciones realizadas en la tarjeta, que incluyen creación, eliminación y actualizaciones.

display
object
requerido
fetch
object
requerido
id
string
requerido

El ID único de la tarjeta.

title
string
requerido

El título de nivel superior de esta tarjeta. Se muestra a los usuarios en la UI del CRM.

createdAt
string<date-time>

La fecha y hora en que se creó la tarjeta.

updatedAt
string<date-time>

La fecha y hora en que se actualizó por última vez la tarjeta.

Last modified on April 13, 2026