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

# Create a developer token

> Creates a new developer token mapped to the provided admin token.



## OpenAPI

````yaml POST /api/admin/developer-token
openapi: 3.0.1
info:
  title: Voice Harbor API
  description: >-
    API for managing voice processing jobs, file uploads/downloads, and
    retrieving job content for the Voice Harbor service.
  version: 0.45.1
servers:
  - url: http://voiceharbor.ai
security:
  - bearerAuth: []
paths:
  /api/admin/developer-token:
    post:
      summary: Create a developer token
      description: Creates a new developer token mapped to the provided admin token.
      responses:
        '200':
          description: Developer token generated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperTokenResponse'
        '401':
          description: Missing Authorization header
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Invalid admin token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Voice Harbor API error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    DeveloperTokenResponse:
      type: object
      properties:
        developerToken:
          type: string
      required:
        - developerToken
    Error:
      type: object
      properties:
        error:
          type: integer
        message:
          type: string
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````