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

    Company ID

Query Parameters
  • cursor
    Type: string

    Pagination cursor from previous response

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

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