Lists actions for a company with pagination and filtering.
Similar to contact actions endpoint. See GET /api/v1/network/contacts/{id}/actions for detailed examples.
Path Parameters
- Type: stringidrequired
Company ID
Query Parameters
- Type: stringcursor
Pagination cursor from previous response
- Type: stringpage
_size Pattern: ^-?(?:0|[1-9]\d*)$Format: int32 - Type: stringtype
Filter by action type: all (default), audit, notes
Responses
- application/json
- application/problem+json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for get/api/v1/network/companies/{id}/actions
curl 'https://app.propstreet.com/api/v1/network/companies/{id}/actions?cursor=&page_size=100&type=all' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"type": "string",
"source": null,
"event": null,
"importId": "string",
"timestampUtc": "2026-05-18T20:22:36.959Z",
"user": {
"id": "string",
"name": "string"
},
"details": null,
"cursor": "string"
}
],
"page": {
"nextCursor": null,
"pageSize": "string",
"hasMore": true
}
}