Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

List linked CRM object records

GET/v1/crm/object-types/{objectKind}/records/{objectID}/linked-records
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
objectKindstringrequired
objectIDstringrequired
Query parameters
target_object_kindstring
relationship_keystring
searchstring
sortstring
filtersstring
JSON array of simple filters for linked records
Responses
200OK
itemsCrmObjectRecordItem[] | nullrequired
Show properties
Array of CrmObjectRecordItem
created_atstringrequired
custom_fieldsanyrequired
display_namestringrequired
enrichment_summaryobject
fieldsobjectrequired
idstringrequired
kindstringrequired
metadataanyrequired
relationships_summaryobjectrequired
updated_atstringrequired
metaPaginationMetarequired
Show properties
cursorstring
has_morebooleanrequired
limitinteger<int64>required
next_cursorstring
offsetinteger<int64>
totalinteger<int64>
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
404Not Found
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X GET "/v1/crm/object-types/string/records/string/linked-records"
Response
{
  "items": [
    {
      "created_at": "string",
      "custom_fields": "string",
      "display_name": "string",
      "enrichment_summary": {},
      "fields": {},
      "id": "string",
      "kind": "string",
      "metadata": "string",
      "relationships_summary": {},
      "updated_at": "string"
    }
  ],
  "meta": {
    "cursor": "string",
    "has_more": true,
    "limit": 0,
    "next_cursor": "string",
    "offset": 0,
    "total": 0
  }
}