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

# List available templates

> Returns a list of templates the current user can access.



## OpenAPI

````yaml api-reference/pdfs.yaml post /templates/list
openapi: 3.0.3
info:
  title: pdfs
  description: >-
    The PDFs service takes a stored PDF template and fills in placeholder fields
    with the values you give it. It then sends back the completed PDF for you to
    save, email, or use however you want.
  version: 1.0.0
servers:
  - url: https://pdfs.platform.arb.inc
security: []
tags:
  - name: /
  - name: markdown
  - name: pleadings
  - name: templates
paths:
  /templates/list:
    post:
      tags:
        - templates
      summary: List available templates
      description: Returns a list of templates the current user can access.
      operationId: postTemplatesList
      responses:
        '200':
          description: Templates successfully retrieved.
          content:
            application/json:
              schema:
                type: object
                properties:
                  templates:
                    type: array
                    description: Collection of template objects.
                    items:
                      type: object
                      properties:
                        documentID:
                          type: string
                          description: Identifier for the document.
                          example: statementOfClaim
                        created:
                          type: string
                          format: date-time
                          description: Timestamp when the template was created.
                          example: '2025-02-18T14:23:11Z'
                        updated:
                          type: string
                          format: date-time
                          description: Timestamp when the template was last updated.
                          example: '2025-07-01T09:45:00Z'
                        fields:
                          type: array
                          description: List of fields that define the template's structure.
                          items:
                            type: string
                            description: Unique identifier for the field.
                            example: headline
                required:
                  - templates
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````