v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-05730512.7 KB
Credentials

List credential templates

List credential templates for your tenant. A template binds a schema to an issuance profile. Use a template UUID when you issue a credential.

get/v1/credential-templates

Response

Array of credential templates. Each array element contains these fields.

created_atstring date-time

Timestamp when the template was created.

namestring

Human-readable template name.

schemastring uuid

UUID of the schema bound to this template.

uuidstring uuid

Unique identifier of the credential template.

validity_secondsinteger

Credential validity duration, in seconds, applied during issuance.

Example response

[
  {
    "created_at": "2026-07-02T23:51:57.339031Z",
    "name": "standard",
    "schema": "5e41f295-5b7b-456a-989d-582373595319",
    "uuid": "b18c99cb-5b7b-4915-938c-038c2ddefb6f",
    "validity_seconds": 31536000
  }
]