List Signer

Retrieves the list of signers that are available to the authenticated user. Signers are grouped into clusters. Use this endpoint to identify which signers your application can interact with.

HTTP request
GET /signers
Authentication
Authentication Type Supported
Organization User (CustomerEmployee) Yes
Delegated User (EndUser) Yes
Service Account Yes
Required permissions
Signers:ListSigners(always required)
Authorization requirements
Header Type Required Description
Authorization string Yes Bearer token used to authenticate the request. See Authentication flows for instructions on generating this token.
Request body
curl --request GET \
  --url https://api.digitalassets.ibm.com/signers \
  --header 'Authorization: Bearer <token>'
Response
200: Success

Example response:

{
  "clusters": [
    {
      "clusterId": "<string>",
      "signers": [
        {
          "signerId": "<string>",
          "encryptionKey": "<string>"
        }
      ]
    }
  ]
}