Skip to main content
POST
/
v1
/
issuers
Create Issuer
curl --request POST \
  --url https://api.truthlocks.com/v1/issuers \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "Acme University",
  "domain": "acme.edu"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "domain": "<string>",
  "status": "PENDING",
  "trust_level": "BASIC",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.truthlocks.com/llms.txt

Use this file to discover all available pages before exploring further.

Registers a new issuer in the trust registry. Newly created issuers are activated immediately and can start minting attestations right away. To request a higher trust tier, submit an issuer application for review.

Parameters

name
string
required
Human-readable name for the issuer
domain
string
required
Verified domain for the issuer (e.g., acme.edu)

Responses

Authorizations

X-API-Key
string
header
required

API key for machine-to-machine authentication

Body

application/json
name
string
required
domain
string
required

Response

Issuer created

id
string<uuid>
tenant_id
string<uuid>
name
string
domain
string
status
enum<string>
Available options:
PENDING,
APPROVED,
SUSPENDED,
REVOKED
trust_level
enum<string>
Available options:
BASIC,
VERIFIED,
ENTERPRISE
created_at
string<date-time>
updated_at
string<date-time>