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
  • id
    Type: string
    required

    Contact ID

Query Parameters
  • page_size
    Type: string Pattern: ^-?(?:0|[1-9]\d*)$Format: int32

    Number of companies per page (1-500, default 100)

  • cursor
    Type: string

    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
  }
}