Skip to main content
POST
/
crm
/
v3
/
lists
/
idmapping
Traducir el Id de lista heredado al Id de lista moderno en lote
curl --request POST \
  --url https://api.hubapi.com/crm/v3/lists/idmapping \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  "<string>"
]'
{
  "legacyListIdsToIdsMapping": [
    {
      "listId": "<string>",
      "legacyListId": "<string>"
    }
  ],
  "missingLegacyListIds": [
    "<string>"
  ]
}

Productos compatibles

Se requiere uno de los siguientes productos o productos de ediciones superiores.
Marketing HubMarketing Hub -Starter
Sales HubSales Hub -Gratuito
Service HubService Hub -Gratuito
Content HubContent Hub -Starter
Esta API requiere uno de los siguientes ámbitos:
crm.lists.read

Authorizations

Authorization
string
header
required

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

Body

application/json · string[]

The body is of type string[].

Response

successful operation

legacyListIdsToIdsMapping
object[]
required
missingLegacyListIds
string[]
required

Una lista de IDs de listas heredadas que se pasaron pero no se encontraron. Estará vacía si no falta ningún ID.

I