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: integer | stringpage
_size Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Signed 32-bit integers (commonly used integer type).
- Type: stringtype
Filter by action type: all (default), audit, notes
- Type: booleaninclude
_archived Include archived notes (rows with archivedAt set) in the response. Default false hides them. Archived predecessors of a supersede chain are still hidden unless include_superseded is also set.
- Type: booleaninclude
_superseded Include superseded predecessor notes (notes that have been replaced by a newer revision) in the response. Default false returns only the active head of each supersede chain.
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' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"type": "string",
"source": null,
"event": null,
"importId": null,
"timestampUtc": "2026-08-13T21:32:28.853Z",
"user": {
"id": "string",
"name": "string"
},
"details": {
"kind": "note",
"message": "string",
"noteType": null,
"file": {
"id": "string",
"fileName": "string",
"url": null
},
"oauthClientId": null,
"idempotencyKey": null,
"archivedAt": null,
"supersedesActivityId": null,
"supersededByActivityId": null
},
"etag": "string",
"cursor": "string"
}
],
"page": {
"nextCursor": null,
"pageSize": 1,
"hasMore": true
}
}