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

# Advance the delivery tracking status for an order (Admin only)



## OpenAPI

````yaml /openapi/order-service.json post /v1/orders/{id}/tracking
openapi: 3.0.0
info:
  title: Asiko Order Service
  description: Cart, checkout, order lifecycle
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: orders
    description: ''
  - name: cart
    description: ''
paths:
  /v1/orders/{id}/tracking:
    post:
      tags:
        - orders
      summary: Advance the delivery tracking status for an order (Admin only)
      operationId: OrdersController_addTrackingEvent
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddTrackingEventBody'
      responses:
        '201':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    AddTrackingEventBody:
      type: object
      properties:
        status:
          type: string
          example: IN_TRANSIT
          enum:
            - ORDER_PLACED
            - PARCEL_COLLECTED
            - IN_TRANSIT
            - AT_DELIVERY_DEPOT
            - OUT_FOR_DELIVERY
            - DELIVERED
        note:
          type: string
          example: Left the Lagos sorting depot
      required:
        - status
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````