Credentials
List credential templates
List every credential template defined for the authenticated tenant, newest first. A credential template binds a credential schema to a reusable issuance profile: a name and a validity window. Issuing a credential references a template by its uuid. Scoped to the tenant derived from the API key. Requires Authorization: Bearer <tenant API key>.
get/v1/credential-templates
Response
Array of the tenant's credential templates, ordered by creation time descending.
Example response
{
"items": [
{
"uuid": "b2c3d4e5-6f7a-4b8c-9d0e-1f2a3b4c5d6e",
"schema": "3a1f9c20-8d4e-4b1a-9f2c-7e6d5a4b3c2d",
"name": "Gold-tier membership (1 year)",
"validity_seconds": 31536000,
"created_at": "2026-06-30T12:00:00+00:00"
}
]
}