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

# Order status

> Get the status of an order

<Tip>Partners must pass in the companyId field in the body</Tip>


## OpenAPI

````yaml get /api/ext/v1/collection/{collectionId}/orders/{orderId}
openapi: 3.0.1
info:
  title: Covver External API docs
  description: Covver External API docs
  version: 0.1.0
servers:
  - url: https://staging-api.covver.io
    description: Covver Staging Server
  - url: https://api.covver.io
    description: Covver Production Server
  - url: http://localhost:8080
    description: Covver Local Server
security:
  - BearerAuth: []
tags:
  - name: Auth
    description: Authentication endpoints
  - name: Products
    description: Product endpoints
  - name: People
    description: People endpoints
  - name: Orders
    description: Orders endpoints
  - name: Reports
    description: Report endpoints
externalDocs:
  url: https://swagger.io
  description: Find more info here
paths:
  /api/ext/v1/collection/{collectionId}/orders/{orderId}:
    get:
      tags:
        - Orders
      summary: Order status
      description: Get the status of an order
      parameters:
        - schema:
            type: string
          in: query
          name: companyId
          required: false
          description: Required for partners
        - schema:
            format: uuid
            type: string
          in: path
          name: collectionId
          required: true
        - schema:
            format: uuid
            type: string
          in: path
          name: orderId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                properties:
                  id:
                    type: string
                  createdAt:
                    format: date-time
                    type: string
                    description: ISO 8601 date-time, e.g. 2025-07-10T07:24:53.486Z
                  status:
                    enum:
                      - Placed
                      - Pending
                      - Partially Shipped
                      - Shipped
                  lineItems:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type: string
                        trackingUrl:
                          type: string
                        trackingNumber:
                          type: string
                        status:
                          enum:
                            - canceled
                            - pending
                            - fulfilled
                            - delivered
                            - outOfStock
                        allShipments:
                          type: array
                          items:
                            description: >-
                              All shipments that might be relevant for this line
                              item. Might be duplicate to trackingNumber /
                              trackingUrl
                            type: object
                            properties:
                              trackingUrl:
                                type: string
                              trackingNumber:
                                type: string
                            required:
                              - trackingUrl
                              - trackingNumber
                      required:
                        - id
                        - title
                        - trackingUrl
                        - status
                required:
                  - id
                  - createdAt
                  - status
                  - lineItems
        4XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
        5XX:
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  errorCode:
                    type: string
                  error: {}
                  statusCode:
                    type: number
                required:
                  - message
                  - errorCode
                  - statusCode
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````