Lists companies linked to a contact with cursor-based pagination. Returns companies connected via the contact-company link table, ordered by link creation date.
Path Parameters
- Type: stringidrequired
Contact ID
Query Parameters
- Type: stringpage
_size Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Number of companies per page (1-500, default 100)
- Type: stringcursor
Opaque cursor token from previous response
Responses
- application/json
- application/problem+json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for get/api/v1/network/contacts/{id}/companies
curl 'https://app.propstreet.com/api/v1/network/contacts/{id}/companies?page_size=&cursor=' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"uri": null,
"name": "string",
"domain": null,
"jobTitle": null,
"isPrimary": true,
"linkId": "string",
"createdUtc": "2026-05-18T20:22:36.959Z",
"updatedUtc": "2026-05-18T20:22:36.959Z"
}
],
"page": {
"nextCursor": null,
"pageSize": "string",
"hasMore": true
}
}