Skip to main content
DELETE /v1/issuer/schemas/{id} API Key

Delete a draft credential schema

Delete a draft credential schema. Only draft schemas without credentials can be deleted.

Parameters

Name Location Type Description
id * path string Schema ID
X-API-Key * header string Issuer API key for authentication

* Required parameter

Response

200 Schema deleted

Content-Type: application/json

success boolean
data object
message string

Code Examples

import os
from aho_sdk import AhoSdk

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

result = client.schemas.delete(
    id="example_id"
)

Try It

Log in to test this endpoint directly from the documentation.

Log in