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

# Confirm Order Sent

> Confirm that the funds for an order have been sent.



## OpenAPI

````yaml POST /v1/orders/{orderId}/confirm-sent
openapi: 3.0.3
info:
  title: Chessa Accounts API
  description: API collection for Chessa Accounts services
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.chessa.ai
security: []
tags:
  - name: User Endpoints
    description: Endpoints related to user management
  - name: Configuration Endpoints
    description: Endpoints for fetching application configurations
  - name: Recipient Endpoints
    description: Endpoints for managing recipients
  - name: Order Endpoints
    description: Endpoints for managing orders
  - name: Rate Endpoints
    description: Endpoints for exchange rates and fees
  - name: Referral Endpoints
    description: Endpoints for managing referrals
paths:
  /v1/orders/{orderId}/confirm-sent:
    post:
      tags:
        - Order Endpoints
      summary: Confirm Order Payment Sent
      description: Confirm that an order has been sent.
      operationId: confirmOrderPaymentSent
      parameters:
        - name: x-client-id
          in: header
          schema:
            type: string
            example: ''
        - name: x-client-secret
          in: header
          schema:
            type: string
            example: ''
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                notes:
                  type: string
                  example: Payment sent via bank transfer
                transactionReference:
                  type: string
                  example: TRF123456789
            example:
              notes: Payment sent via bank transfer
              transactionReference: TRF123456789
      responses:
        '200':
          description: Success Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    example: ord_123456789abcdef
                  notes:
                    type: string
                    example: Payment sent via bank transfer
                  sentAt:
                    type: string
                    example: '2025-03-18T11:30:45.123Z'
                  status:
                    type: string
                    example: sent
                  transactionReference:
                    type: string
                    example: TRF123456789
                  updatedAt:
                    type: string
                    example: '2025-03-18T11:30:45.123Z'
              examples:
                Success Response:
                  value:
                    id: ord_123456789abcdef
                    notes: Payment sent via bank transfer
                    sentAt: '2025-03-18T11:30:45.123Z'
                    status: sent
                    transactionReference: TRF123456789
                    updatedAt: '2025-03-18T11:30:45.123Z'
        '400':
          description: Error Response - Invalid Order Status
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: invalid_order_status
                  message:
                    type: string
                    example: Order must be in 'processing' status to confirm as sent
                  statusCode:
                    type: number
                    example: 400
              examples:
                Error Response - Invalid Order Status:
                  value:
                    error: invalid_order_status
                    message: Order must be in 'processing' status to confirm as sent
                    statusCode: 400
        '404':
          description: Error Response - Order Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: not_found
                  message:
                    type: string
                    example: Order not found
                  statusCode:
                    type: number
                    example: 404
              examples:
                Error Response - Order Not Found:
                  value:
                    error: not_found
                    message: Order not found
                    statusCode: 404

````