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

# Create template

> Create a new custom verification template



## OpenAPI

````yaml /api-specs/anycheck.yaml post /templates
openapi: 3.0.3
info:
  title: AnyCheck API
  version: 1.0.0
  description: >
    # AnyCheck API Documentation


    The AnyCheck API (formerly KYB API) provides comprehensive business and
    identity verification services through a RESTful interface.


    ## Features

    - **Identity Verification**: KTP, NIK, and other identity document
    validation

    - **Business Documents**: BPKB, land certificates, and business registration
    verification

    - **Compliance**: PEP screening and fraud detection

    - **Bank Statement Analysis**: OCR extraction and financial analysis

    - **Template Management**: Create and manage verification templates

    - **Async Processing**: Queue-based verification with webhook notifications


    ## Authentication

    All endpoints (except `/ping` and `/health`) require authentication via the
    `X-API-Key` header.
  contact:
    name: API Support
    email: bd@fintelite.ai
  license:
    name: Proprietary
servers:
  - url: https://api.anycheck.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Upload
    description: File upload operations
  - name: Authentication
    description: User authentication and registration
  - name: Groups
    description: Group resource management
  - name: Services
    description: Verification service operations
  - name: Folders
    description: Folder management for organizing verifications
  - name: Verifications
    description: Document verification operations
  - name: Templates
    description: Verification template management
  - name: Bank Statement Analysis
    description: Bank statement OCR extraction, review, and financial analytics
  - name: Drafts
    description: 'Draft verification management: save, edit, and submit verifications'
paths:
  /templates:
    post:
      tags:
        - Templates
      summary: Create template
      description: Create a new custom verification template
      operationId: createTemplate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - name
                - description
                - schema
              properties:
                name:
                  type: string
                  example: Company Registration Verification
                  description: Template name
                description:
                  type: string
                  example: Template for extracting company registration data
                  description: Template description
                custom_id:
                  type: string
                  nullable: true
                  example: comp-reg-v1
                  description: Custom identifier for the template
                instruction:
                  type: string
                  nullable: true
                  example: >-
                    Focus on extracting company name and registration number
                    accurately
                  description: Special instructions for template processing
                schema:
                  type: object
                  example:
                    company_name:
                      type: string
                      required: true
                    registration_number:
                      type: string
                      required: true
                    address:
                      type: string
                      required: false
                  description: Data extraction schema definition
                config:
                  type: object
                  description: Template configuration settings
                type:
                  type: string
                  enum:
                    - CUSTOM
                    - PREBUILT
                  default: CUSTOM
                  description: >-
                    Template type. Users can only create CUSTOM templates.
                    PREBUILT templates are managed by AnyCheck admin (defaults
                    to CUSTOM)
      responses:
        '201':
          description: Template created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Template'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '408':
          $ref: '#/components/responses/RequestTimeout'
components:
  schemas:
    Template:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique template identifier
        name:
          type: string
          example: KTP Verification
          description: Template name
        description:
          type: string
          example: Template for KTP document verification and data extraction
          description: Template description
        custom_id:
          type: string
          nullable: true
          description: Custom identifier for the template
        instruction:
          type: string
          nullable: true
          description: Special instructions for template processing
        schema:
          type: object
          description: Data extraction schema definition
          example:
            name:
              type: string
              required: true
            nik:
              type: string
              required: true
            birth_date:
              type: date
              required: true
        config:
          type: object
          description: Template configuration settings
        type:
          type: string
          enum:
            - CUSTOM
            - PREBUILT
          description: Template type - custom or prebuilt
          example: CUSTOM
        created_at:
          type: string
          format: date-time
          description: Template creation timestamp
        updated_at:
          type: string
          format: date-time
          nullable: true
          description: Last update timestamp
    ErrorResponse:
      type: object
      properties:
        error_code:
          type: string
          example: INVALID_REQUEST
          description: Error code identifying the type of error
        message:
          type: string
          example: Invalid request. Please check input data format and try again
          description: Human-readable error message
        errors:
          type: array
          description: Field-specific validation errors (optional)
          items:
            $ref: '#/components/schemas/FieldError'
    FieldError:
      type: object
      properties:
        field:
          type: string
          description: Name of the field with validation error
          example: service_id
        message:
          type: string
          description: Field-specific error message
          example: This field is required
      required:
        - field
        - message
  responses:
    BadRequest:
      description: Bad request - Invalid input data
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            required_field:
              summary: Required field missing
              value:
                error_code: INVALID_REQUEST
                message: Invalid request. Please check input data format and try again
                errors:
                  - field: service_id
                    message: This field is required
            invalid_format:
              summary: Invalid field format
              value:
                error_code: INVALID_REQUEST
                message: Invalid request. Please check input data format and try again
                errors:
                  - field: email
                    message: This field should be a valid email
                  - field: folder_id
                    message: Must be a valid UUID
            multiple_errors:
              summary: Multiple validation errors
              value:
                error_code: INVALID_REQUEST
                message: Invalid request. Please check input data format and try again
                errors:
                  - field: service_id
                    message: This field is required
                  - field: configuration
                    message: This field is required
                  - field: folder_id
                    message: Must be a valid UUID
    Unauthorized:
      description: Unauthorized - Authentication required or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            invalid_api_key:
              summary: Invalid API key
              value:
                error_code: INVALID_API_KEY
                message: API key is invalid
            api_key_expired:
              summary: Expired API key
              value:
                error_code: API_KEY_EXPIRED
                message: API key is expired
            unauthorized:
              summary: Missing authentication
              value:
                error_code: UNAUTHORIZED
                message: You are not authorized to perform this action
    RequestTimeout:
      description: Request timeout
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error_code: REQUEST_TIMEOUT
            message: Request timed out. Please try again later
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for service-to-service authentication

````