Skip to main content
GET
/
v1
/
policies
List policies
curl --request GET \
  --url https://api.truthlocks.com/v1/policies \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "category": "<string>",
      "status": "<string>",
      "version": 123
    }
  ]
}
Returns an array of all policies for the current tenant, ordered by creation date (newest first). The response includes policies in all statuses — DRAFT, ACTIVE, and DISABLED.

Responses

Authorizations

X-API-Key
string
header
required

API key for machine-to-machine authentication

Query Parameters

category
enum<string>
Available options:
MINT,
VERIFY,
BUNDLE_EXPORT
status
enum<string>
Available options:
DRAFT,
ACTIVE,
DISABLED

Response

Policies list

items
object[]