Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • case_uuid string Required
application/json

Body

  • participants array[string(uuid)] Required

    Account uuids belonging to the firm.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/cases/{case_uuid}/participants
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/cases/6ff8f7f6-1eb3-3525-be4a-3932c805afed/participants' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 --data '{"participants":["fbd8c611-f7c3-4353-9c0f-89dbf6ac5240","526d04df-ec22-43e2-8418-2f352f9f5ea7","3d1dc0f6-0ff9-49e0-86bd-cf142d051ee8"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "participants": [
    "fbd8c611-f7c3-4353-9c0f-89dbf6ac5240",
    "526d04df-ec22-43e2-8418-2f352f9f5ea7",
    "3d1dc0f6-0ff9-49e0-86bd-cf142d051ee8"
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}