List signatories for a customer

Returns signatories for the customer. Supports paging and optional ordering (passed through to the legal-entity service).

Access and authorization

  • Appropriate Open Banking access is required (e.g. mCust in the implementation).
  • The caller's partner identifier must be present (SIG_PARTNERID_REQUIRED if missing).
  • The requested customer must exist (SIG_CUSTOMERNOTFOUND) and be allowed for the caller's token (SIG_CUSTOMERACCESS_DENIED).

Validation

  • Query parameters such as page and size must remain within supported ranges when provided; invalid path or query values can yield SIG_VALIDATION_ERROR.

When no rows exist, HTTP 200 still returns with an empty signatories array and an empty-state message.

SecurityoAuth2
Request
query Parameters
page
integer [ 0 .. 9999 ]
Default: 0

Zero-based page index.

size
integer [ 1 .. 500 ]
Default: 10

Page size.

includeAll
boolean
Default: true
orderByColumn
string
orderDir
string
Responses
200

List result (may be empty)

400

Validation or business failure (e.g. path/query validation)

401

Not authenticated

403

Forbidden

500

Internal server error

get/v1/customers/{customerId}/signatories
Request samples
Response samples
application/json
{
  • "signatories": [
    ],
  • "message": "Signatories fetched successfully."
}