> ## Documentation Index
> Fetch the complete documentation index at: https://developer.onetrust.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get List of Templates

Use this API to retrieve a paginated list of templates with their details, including template name, type, current version, and status.

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Consent & Preferences - Cookie Consent",
    "version": "1.0",
    "contact": {
      "name": "OneTrust Support",
      "url": "https://my.onetrust.com/s/contactsupport"
    },
    "license": {
      "name": "Apache 2.0",
      "url": "https://www.apache.org/licenses/LICENSE-2.0"
    },
    "description": "The Cookie Consent APIs are used to integrate external systems and streamline the flow of data with Cookie Consent in the OneTrust Platform."
  },
  "servers": [
    {
      "url": "https://{hostname}",
      "variables": {
        "hostname": {
          "default": "hostname",
          "description": "The OneTrust hostname such as app.onetrust.com, app-eu.onetrust.com, app-de.onetrust.com, app-uk.onetrust.com, app-apac.onetrust.com, trial.onetrust.com, or uat.onetrust.com."
        }
      }
    }
  ],
  "tags": [
    {
      "name": "Templates",
      "description": "The Templates APIs are used to manage reusable consent templates that define the structure and behavior of consent experiences.",
      "externalDocs": {
        "description": "OpenAPI 3.1.0 - Download Definition",
        "url": "https://developer.onetrust.com/onetrust/openapi/consent-preferences-cookie-consent.json"
      }
    }
  ],
  "x-onetrust": {
    "spec-label": "OpenAPI 3.1.0"
  },
  "x-readme": {
    "explorer-enabled": false,
    "proxy-enabled": false,
    "metrics-enabled": false
  },
  "paths": {
    "/api/cmp/v1/templates": {
      "get": {
        "operationId": "getTemplates",
        "summary": "Get List of Templates",
        "description": "Use this API to retrieve a paginated list of templates with their details, including template name, type, current version, and status.",
        "tags": [
          "Templates"
        ],
        "x-onetrust": {
          "spec-label": "https://developer.onetrust.com/onetrust/openapi/consent-preferences-cookie-consent.json"
        },
        "parameters": [
          {
            "name": "searchStr",
            "in": "query",
            "description": "Search string to filter templates by name",
            "required": false,
            "schema": {
              "type": "string",
              "maxLength": 255
            },
            "example": "my-template"
          },
          {
            "name": "sortBy",
            "in": "query",
            "description": "Field to sort by.",
            "required": false,
            "schema": {
              "type": "string",
              "default": "templateName",
              "enum": [
                "templateName",
                "templateType",
                "status",
                "currentVersion"
              ]
            },
            "example": "templateName"
          },
          {
            "name": "direction",
            "in": "query",
            "description": "Sort direction.",
            "required": false,
            "schema": {
              "type": "string",
              "default": "asc",
              "enum": [
                "asc",
                "desc"
              ]
            },
            "example": "asc"
          },
          {
            "name": "page",
            "in": "query",
            "description": "The page number for pagination results, starting from 0.",
            "required": false,
            "schema": {
              "type": "integer",
              "example": 1,
              "default": 0,
              "minimum": 0
            }
          },
          {
            "name": "size",
            "in": "query",
            "description": "The number of items to return per page.",
            "required": false,
            "schema": {
              "type": "integer",
              "example": 10,
              "default": 10,
              "maximum": 100,
              "minimum": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PageTemplateDto"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request"
          },
          "401": {
            "description": "Unauthorized"
          },
          "403": {
            "description": "Forbidden"
          },
          "429": {
            "description": "Too Many Requests. \nFor more information, see [API Rate Limits](https://developer.onetrust.com/onetrust/reference/rate-limits-overview).",
            "headers": {
              "Retry-After": {
                "schema": {
                  "description": "The number of seconds after which requests will be allowed again.",
                  "format": "int32"
                }
              },
              "ot-period": {
                "schema": {
                  "description": "The unit of time for which the rate limit applies",
                  "enum": [
                    "HOUR",
                    "MINUTE"
                  ]
                }
              },
              "ot-ratelimit-event-id": {
                "schema": {
                  "description": "The unique identifier for the rate-limiting event.",
                  "format": "uuid"
                }
              },
              "ot-request-made": {
                "schema": {
                  "description": "The number of requests made within the specified period.",
                  "format": "int32"
                }
              },
              "ot-requests-allowed": {
                "schema": {
                  "description": "The number of requests allowed within the specified period.",
                  "format": "int32"
                }
              }
            }
          },
          "500": {
            "description": "Internal Server Error"
          }
        },
        "security": [
          {
            "OAUTH2": [
              "COOKIE_READ"
            ]
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "PageableObject": {
        "type": "object",
        "properties": {
          "offset": {
            "description": "The starting position for paginated results.",
            "type": "integer",
            "format": "int64"
          },
          "sort": {
            "description": "The sorting configuration applied to the results.",
            "$ref": "#/components/schemas/SortObject"
          },
          "paged": {
            "description": "This flag indicates whether pagination is enabled.",
            "type": "boolean"
          },
          "pageSize": {
            "description": "The number of items displayed per page.",
            "type": "integer",
            "format": "int32"
          },
          "pageNumber": {
            "description": "The current page number in the pagination sequence.",
            "type": "integer",
            "format": "int32"
          },
          "unpaged": {
            "description": "This flag indicates whether pagination is disabled.",
            "type": "boolean"
          }
        }
      },
      "SortObject": {
        "type": "object",
        "properties": {
          "empty": {
            "description": "This flag indicates whether the result set is empty.",
            "type": "boolean"
          },
          "sorted": {
            "description": "This flag indicates whether the results are sorted.",
            "type": "boolean"
          },
          "unsorted": {
            "description": "This flag indicates whether the results are in unsorted order.",
            "type": "boolean"
          }
        }
      },
      "PageTemplateDto": {
        "type": "object",
        "properties": {
          "totalPages": {
            "type": "integer",
            "format": "int32"
          },
          "totalElements": {
            "type": "integer",
            "format": "int64"
          },
          "size": {
            "type": "integer",
            "format": "int32"
          },
          "content": {
            "items": {
              "$ref": "#/components/schemas/TemplateDto"
            },
            "type": "array"
          },
          "number": {
            "type": "integer",
            "format": "int32"
          },
          "sort": {
            "$ref": "#/components/schemas/SortObject"
          },
          "pageable": {
            "$ref": "#/components/schemas/PageableObject"
          },
          "first": {
            "type": "boolean"
          },
          "last": {
            "type": "boolean"
          },
          "numberOfElements": {
            "type": "integer",
            "format": "int32"
          },
          "empty": {
            "type": "boolean"
          }
        }
      },
      "TemplateDto": {
        "type": "object",
        "properties": {
          "id": {
            "description": "UUID of the template",
            "type": "string",
            "format": "uuid",
            "example": "f2229953-b4b5-4042-8cb9-b78038cc4c46"
          },
          "currentVersion": {
            "description": "The current version number of the template",
            "type": "integer",
            "format": "int32",
            "example": 12
          },
          "templateName": {
            "description": "Name of the template",
            "type": "string",
            "example": "my-template-2026",
            "maxLength": 255,
            "minLength": 1
          },
          "templateType": {
            "description": "The category of the template",
            "type": "string",
            "example": "GDPR",
            "enum": [
              "GDPR",
              "IAB",
              "CCPA",
              "IAB2",
              "GENERIC",
              "LGPD",
              "GENERIC_PROMPT",
              "CPRA",
              "CDPA",
              "USNATIONAL",
              "COLORADO",
              "CTDPA",
              "UCPA",
              "QUEBEC",
              "IABC",
              "IAB2V2",
              "OCPA",
              "MODPA",
              "VCDPA",
              "UKGDPR",
              "CUSTOM"
            ]
          },
          "status": {
            "description": "The template's status, published if status is ACTIVATED",
            "type": "string",
            "example": "DRAFTED",
            "enum": [
              "DRAFTED",
              "ACTIVATED"
            ]
          },
          "isDefault": {
            "description": "Indicates if the template is the default template",
            "type": "boolean",
            "example": false
          },
          "isUniversalDefault": {
            "description": "Indicates if the template is the universal default template",
            "type": "boolean",
            "example": false
          },
          "isOrgDefault": {
            "description": "Indicates if the template is the default template for the organization",
            "type": "boolean",
            "example": false
          },
          "orgDefaultEnabled": {
            "description": "Indicates if the organization default is enabled",
            "type": "boolean",
            "example": false
          },
          "orgId": {
            "description": "Organization ID",
            "type": "string",
            "example": "org-123",
            "maxLength": 255,
            "minLength": 1
          },
          "orgName": {
            "description": "Organization name",
            "type": "string",
            "example": "OneTrust",
            "maxLength": 255,
            "minLength": 1
          },
          "languages": {
            "description": "List of enabled language codes for this template",
            "type": "array",
            "items": {
              "type": "string"
            },
            "example": [
              "en",
              "fr-CA",
              "es"
            ]
          }
        }
      }
    },
    "securitySchemes": {
      "OAUTH2": {
        "type": "oauth2",
        "flows": {
          "clientCredentials": {
            "tokenUrl": "https://{hostname}/api/access/v1/oauth/token",
            "scopes": {
              "COOKIE": "Cookie Scope gives the user access to read/write operations inside the Cookie Consent module.",
              "COOKIE_READ": "Cookie Read Scope gives the user read-only access to the Cookie Consent module."
            }
          }
        }
      }
    }
  }
}
```