Get all Actions belonging to an account
Get all related actions for the referenced account uuid (see header)
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Query parameters
-
filter[completed] boolean
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'.
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"
}
]
}