Company logoTrust Center Documentation
API v1 ReferenceCertificationsTemplates

List certification templates

Retrieve a list of predefined certification templates that can be used to create new certifications. Templates provide standardized certification types with pre-filled information.

GET
/api/v1/certifications/templates
AuthorizationBearer <token>

JWT token obtained from login endpoint

In: header

Response Body

curl -X GET "https://app.orbiqhq.com/api/v1/certifications/templates"
{
  "templates": [
    {
      "id": "iso27001",
      "name": "ISO 27001",
      "description": "Information Security Management System",
      "category": "security",
      "typical_validity_months": 36
    },
    {
      "id": "soc2",
      "name": "SOC 2 Type II",
      "description": "Service Organization Control 2",
      "category": "compliance",
      "typical_validity_months": 12
    }
  ]
}
{
  "error": "Unauthorized"
}
{
  "error": "Internal server error"
}

How is this guide?