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

# Create a delivery

> Creates a delivery from an uploaded release file. Call this after uploading the ZIP to the URL returned by `POST /distribution/deliveries/files`. Returns a `delivery_id` to track ingestion progress.



## OpenAPI

````yaml /enterprises/distribution/openapi.json post /distribution/deliveries
openapi: 3.1.0
info:
  title: Musixmatch Distribution API
  version: 1.0.0
  description: >-
    API for music distributors to submit releases and lyrics to the Musixmatch
    catalog.
servers:
  - url: https://varco-{partner}.musixmatch.com
    description: >-
      Replace {partner} with the identifier assigned to your organization during
      onboarding
    variables:
      partner:
        default: partner
        description: Identifier assigned to your organization during onboarding
security:
  - bearerAuth: []
paths:
  /distribution/deliveries:
    post:
      tags:
        - Deliveries
      summary: Create a delivery
      description: >-
        Creates a delivery from an uploaded release file. Call this after
        uploading the ZIP to the URL returned by `POST
        /distribution/deliveries/files`. Returns a `delivery_id` to track
        ingestion progress.
      operationId: createDelivery
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDeliveryRequest'
            example:
              file_id: 123456
      responses:
        '201':
          description: Delivery created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateDeliveryEnvelope'
              example:
                message:
                  body:
                    delivery:
                      delivery_id: 123456
                  header:
                    status_code: 201
                    execute_time: 0.06
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    CreateDeliveryRequest:
      type: object
      required:
        - file_id
      properties:
        file_id:
          type: integer
          description: >-
            The file identifier returned by `POST
            /distribution/deliveries/files`
    CreateDeliveryEnvelope:
      type: object
      properties:
        message:
          type: object
          properties:
            body:
              type: object
              properties:
                delivery:
                  type: object
                  properties:
                    delivery_id:
                      type: integer
                      description: Unique identifier for this delivery
            header:
              $ref: '#/components/schemas/MessageHeader'
    MessageHeader:
      type: object
      properties:
        status_code:
          type: number
          description: HTTP status code of the response
        execute_time:
          type: number
          description: Server execution time in seconds
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
        data:
          type: object
          properties:
            error:
              type: object
              properties:
                code:
                  type: string
  responses:
    BadRequest:
      description: Bad request — invalid or missing parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Unauthorized — missing or invalid Bearer token
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Access token obtained via the Client Credentials OAuth 2.0 flow at
        https://connect.musixmatch.com/oauth/token

````