Lists contact-company links with cursor-based pagination and optional delta sync.
Query Parameters
- Type: string Format: date-timeupdated
_since Filter links updated on or after this UTC timestamp (ISO 8601)
- Type: booleaninclude
_deleted Include deleted links in results
- Type: integer | stringpage
_size Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Number of links per page (1-500, default 500)
- Type: stringcursor
Opaque cursor token from previous response for pagination
- Type: stringcontact
_id Filter links by contact ID
- Type: stringcompany
_id Filter links by company ID
Responses
- application/json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for get/api/v1/network/links
curl https://app.propstreet.com/api/v1/network/links \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"contactId": "string",
"companyId": "string",
"jobTitle": null,
"createdUtc": "2026-08-13T21:32:28.858Z",
"updatedUtc": "2026-08-13T21:32:28.858Z",
"deletedUtc": null,
"etag": "string",
"changeType": null,
"changeOrigin": null
}
],
"page": {
"nextCursor": null,
"pageSize": 1,
"hasMore": true
}
}