Get all Actions belonging to an account

GET /api/v2/portal/actions

Get all related actions for the referenced account uuid (see header)

Query parameters

  • show actions which have been completed

  • sort string

    Field to sort by. Valid fields are [created_at, updated_at]. Negative sign to denote DESC. Defaults to '-created_at'.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]

      Additional properties are allowed.

GET /api/v2/portal/actions
curl \
 -X GET https://api.plannrcrm.com/api/v2/portal/actions \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json" \
 -H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    {
      "type": "fact_find_request",
      "uuid": "cb8b96c1-f09b-49e9-bfee-acbb59ea8061",
      "title": "Signature Request",
      "created_at": "2025-01-17T11:18:33+00:00",
      "description": "Invited to complete the action item"
    }
  ]
}