light-mode-image
Learn
RevocationAPI Reference

Status List Signers

Create a Status List Signer

POST/v2/credentials/mobile/status-list-signers

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v2/credentials/mobile/status-list-signers" \  -H "Content-Type: application/json" \  -d '{    "iacaId": "080c670a-2e90-4023-b79f-b706e55e9bc6"  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "iacaId": "080c670a-2e90-4023-b79f-b706e55e9bc6",  "active": true,  "csrPem": "string"}

Revoke a Status List Signer

POST/v2/credentials/mobile/status-list-signers/{statusListSignerId}/revoke

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

statusListSignerId*string

Status list signer identifier

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Empty request body for status list signer revocation

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v2/credentials/mobile/status-list-signers/497f6eca-6276-4993-bfeb-53cbbbba6f08/revoke" \  -H "Content-Type: application/json" \  -d '{}'
{  "revoked": true,  "revocationDate": "string"}

Retrieve all Status List Signers

GET/v2/credentials/mobile/status-list-signers

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/v2/credentials/mobile/status-list-signers"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "iacaId": "080c670a-2e90-4023-b79f-b706e55e9bc6",      "active": true,      "csrPem": "string"    }  ]}

Retrieve a Status List Signer

GET/v2/credentials/mobile/status-list-signers/{statusListSignerId}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

statusListSignerId*string

Status list identifier

Formatuuid

Response Body

application/json

curl -X GET "https://example.com/v2/credentials/mobile/status-list-signers/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "iacaId": "080c670a-2e90-4023-b79f-b706e55e9bc6",  "active": true,  "csrPem": "string"}

Update a Status List Signer

PUT/v2/credentials/mobile/status-list-signers/{statusListSignerId}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

statusListSignerId*string

Status list identifier

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PUT "https://example.com/v2/credentials/mobile/status-list-signers/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{}'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "iacaId": "080c670a-2e90-4023-b79f-b706e55e9bc6",  "active": true,  "certificatePem": "string",  "certificateFingerprint": "string",  "certificateData": {    "notBefore": "2019-08-24T14:15:22Z",    "notAfter": "2019-08-24T14:15:22Z",    "country": "string",    "stateOrProvinceName": "string",    "organisationName": "string"  }}

Delete a Status List Signer

DELETE/v2/credentials/mobile/status-list-signers/{statusListSignerId}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

statusListSignerId*string

Status list identifier

Formatuuid

Response Body

curl -X DELETE "https://example.com/v2/credentials/mobile/status-list-signers/497f6eca-6276-4993-bfeb-53cbbbba6f08"
Empty

How would you rate this page?

Last updated on

On this page