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

Delete render template

Delete a custom render template. System templates cannot be deleted.

Parameters

Name Location Type Description
schema_id * path string Schema ID
id * path string Render template hashid
X-API-Key * header string API key for issuer authentication

* Required parameter

Response

200 Template deleted

Content-Type: application/json

success boolean
data object
message string

Code Examples

import os
from aho_sdk import AhoSdk

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

result = client.render_templates.delete(
    schema_id="example_schema_id",
    id="example_id"
)

Try It

Log in to test this endpoint directly from the documentation.

Log in