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

# Update the status of a transmission



## OpenAPI

````yaml openapi.json put /transmissions/status/{uuid}
openapi: 3.1.0
info:
  title: Pink Platform
  version: 0.0.1
servers:
  - url: http://localhost/api
security: []
paths:
  /transmissions/status/{uuid}:
    put:
      tags:
        - Transmission
      summary: Update the status of a transmission
      operationId: transmissions.update-status
      parameters:
        - name: uuid
          in: path
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                message:
                  type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Transmission status updated successfully.
                required:
                  - message
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error overview.
                required:
                  - message
        '401':
          $ref: '#/components/responses/AuthenticationException'
components:
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message

````