v6

OpenAPI 3.1.0raw.githubusercontent.com2026-08-0161197504.7 KB
customers

List authorities for a person

List all authorities for a person by ID, optionally including revoked authorities.

get/persons/{id}/authorities

Path parameters

idstring required

The ID of the person.

The ID of the person.

Query parameters

include_revokedboolean

Whether to include revoked authorities.

Whether to include revoked authorities.

Response

OK

authority_type'owner' | 'joint_owner' | 'signatory' | 'power_of_attorney' | 'trading' required
created_atstring date-time required

The timestamp (in ISO-8601 format) of when the resource was created.

granted_atstring date-time required

Date and time the authority was granted.

idstring required

Unique resource identifier.

modified_atstring date-time required

The timestamp (in ISO-8601 format) of when the resource was last modified.

revoked_atstring date-time nullable required

Date and time the authority was revoked; null while the authority is still active.

status'active' | 'revoked' required

Example response

[
  {
    "customer": {
      "date_of_birth": "1988-04-12T00:00:00Z",
      "risk_score": "42.50"
    },
    "granted_at": "2026-07-14T09:30:00Z",
    "person": {
      "date_of_birth": "1988-04-12"
    },
    "revoked_at": "2026-08-01T12:00:00Z"
  }
]