Saltar al contenido principal
GET
/
crm
/
v3
/
limits
/
associations
/
records
/
{fromObjectTypeId}
/
{toObjectTypeId}
Leer límites de asociaciones de registros entre dos objetos
curl --request GET \
  --url https://api.hubapi.com/crm/v3/limits/associations/records/{fromObjectTypeId}/{toObjectTypeId} \
  --header 'Authorization: Bearer <token>'
{
  "atLimitFromRecordSamples": [
    {
      "label": "<string>",
      "objectId": 123
    }
  ],
  "limit": 123,
  "nearLimitFromRecordSamples": [
    {
      "label": "<string>",
      "objectId": 123,
      "percentage": 123,
      "usage": 123
    }
  ],
  "totalRecordsAtLimit": 123,
  "totalRecordsNearLimit": 123
}

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

fromObjectTypeId
string
requerido
toObjectTypeId
string
requerido

Respuesta

successful operation

atLimitFromRecordSamples
object[]
requerido
limit
integer<int64>
requerido

El número máximo de asociaciones permitidas para los registros.

nearLimitFromRecordSamples
object[]
requerido
totalRecordsAtLimit
integer<int32>
requerido

El número total de registros que han alcanzado su límite de asociaciones.

totalRecordsNearLimit
integer<int32>
requerido

El número total de registros que se acercan a su límite de asociaciones.

Last modified on April 13, 2026