v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Template

Get List of Templates

Use this API to retrieve the details of all the published templates. The response includes basic template details such as the template name, template root version ID, and template type.

🗒 Things to Know

  • The following template types are available:
<details> <summary><b>Template Types</b></summary>

CONTROL: Control templates created in IT & Security Risk Management

DISCLOSURE: Disclosure Management

ESG: ESG Program Reporting & Disclosures

EXCHANGE: Third-Party Risk Exchange

INCIDENT: Incident Management

ITRM: IT & Security Risk Management

PIA: PIA & DPIA Automation

VENDOR: Third-Party Risk Management

</details>
  • If the template type is not specified in the API request body, all template types will be included in the response.
get/api/template/v1/published-template-metadata

Query parameters

template-typesstring[]

The array of template types to filter by when retrieving published templates.

Response

OK

namestring

The display name of the published template.

rootVersionIdstring uuid

The root version identifier used for template management and operations.

templateType'PIA' | 'VENDOR' | 'ITRM' | 'CONTROL' | 'ESG' | 'TPDD' | 'AIGOVERNANCE'

The classification type of the template indicating its purpose and module.

Example response

[
  {
    "name": "Sample Template",
    "rootVersionId": "7d271be5-0601-4190-96a7-65d7c427a725",
    "templateType": "PIA"
  }
]