Skip to main content
POST
/
credentials
/
revoke
Revoke multiple credentials by their ids.
curl --request POST \
  --url https://test.didxtech.com/me-creds/api/credentials/revoke \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "cm7d9cq5600pwk3zq3kmpg8uc",
    "cm7d9cq5600pzk3zq9wzxxtc3"
  ]
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
ids
string[]
required
Minimum string length: 1

Response

204

Credentials revoked successfully.