Skip to main content
DELETE /v1/holder/presentations/{uuid} API Key

Revoke a presentation

Revoke a presentation so it can no longer be verified.

Parameters

Name Location Type Description
uuid * path string Presentation UUID
X-API-Key * header string API key for holder authentication

* Required parameter

Response

200 Presentation revoked successfully

Content-Type: application/json

success boolean
data object
message string

Code Examples

import os
from aho_sdk import AhoSdk

client = AhoSdk.holder(api_key=os.environ["AHO_API_KEY"])

result = client.presentations.delete(
    uuid="example_uuid"
)

Try It

Log in to test this endpoint directly from the documentation.

Log in