Delete Semantic CWT credential metadata
Deletes all credential metadata from the tenant for a specific credential by providing its ID. If the credential was set to be revocable, it will be permanently revoked upon metadata deletion.
Note that only metadata of revocable credentials or credentials issued via the OpenID4VCI flow is saved.
Deleted metadata cannot be recovered.
Credential metadata deleted
Invalid id parameter format
Credential ID not found
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 400
- 404
{- "code": "string",
- "message": "string",
- "details": [
- {
- "value": "string",
- "msg": "Invalid value",
- "param": "id",
- "location": "body"
}
]
}
Retrieve all Semantic CWT credential revocation lists
Returns a list of all Semantic CWT credential revocation lists on the tenant.
Analytic events
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_LISTS_RETRIEVE_START
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_LISTS_RETRIEVE_SUCCESS
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_LISTS_RETRIEVE_FAIL
Revocation lists retrieved
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
[- {
- "nextCursor": "string",
- "data": [
- {
- "id": "string",
- "issuer": "string",
- "url": "string"
}
]
}
]
Retrieve Semantic CWT credential revocation list
Returns a Semantic CWT credential revocation list by providing its ID.
Analytic events
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_RETRIEVE_START
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_RETRIEVE_SUCCESS
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_RETRIEVE_FAIL
Revocation list retrieved
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
Update Semantic CWT credential revocation status
Updates the credential status as revoked (invalid) or unrevoked (valid).
Analytic events
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_SET_STATUS_START
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_SET_STATUS_SUCCESS
- CREDENTIAL_COMPACT_SEMANTIC_REVOCATION_SET_STATUS_FAIL
Revocation status updated
Id not found
- Payload
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
{- "isRevoked": true
}
- 200
{- "id": "string",
- "isRevoked": true
}
Retrieve Semantic CWT credential revocation status
Retrieve the revocation status of a Semantic CWT credential by providing its ID.
Revocation status retrieved
Id not found
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
{- "isRevoked": true
}