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

# Get approved email templates

> Returns your team's APPROVED email templates. Use a template's `id` as `emailTemplateId` when creating a session with an email `notificationPlatformId`.



## OpenAPI

````yaml /api-reference/openapi.json get /partner/email-templates
openapi: 3.1.0
info:
  title: Cr3dentials Partner API
  description: >-
    Integrate account verification into your application. Users verify their
    accounts through an iframe-based browser session, and you receive
    cryptographically attested proof of data authenticity.
  version: 1.0.0
  contact:
    name: Cr3dentials Support
    url: https://cr3dentials.xyz
servers:
  - url: https://app.cr3dentials.xyz/v1
    description: Production
  - url: https://staging.cr3dentials.xyz/v1
    description: Staging
security:
  - apiKey: []
paths:
  /partner/email-templates:
    get:
      tags:
        - Platforms
      summary: Get approved email templates
      description: >-
        Returns your team's APPROVED email templates. Use a template's `id` as
        `emailTemplateId` when creating a session with an email
        `notificationPlatformId`.
      operationId: getEmailTemplates
      responses:
        '200':
          description: List of approved email templates
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/EmailTemplate'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    EmailTemplate:
      type: object
      properties:
        id:
          type: integer
          description: Template identifier (use as `emailTemplateId`).
          example: 1
        type:
          type: string
          description: The email type this template applies to.
          example: VERIFICATION_REQUEST
        name:
          type: string
          example: Acme verification request
        subject:
          type: string
          example: Complete your verification
        status:
          type: string
          description: Always APPROVED for templates returned here.
          example: APPROVED
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          example:
            statusCode: 401
            message: Unauthorized
    RateLimited:
      description: Too many requests — 120 req / 60s per API key. Use exponential backoff.
      content:
        application/json:
          example:
            statusCode: 429
            message: Too Many Requests
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Your partner API key. Alternatively, pass `Authorization: Bearer <key>`.'

````