Skip to main content
GET
/
cases
/
{case_id}
/
authority
Get authority verification
curl --request GET \
  --url https://api.example.com/v1/cases/{case_id}/authority \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "level": "level_0",
    "types": [
      "executor_in_will",
      "next_of_kin"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

Response

Authority verification details.

data
object