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

# Process Settlement

> Manually trigger settlement processing.

<Info>Returns `204 No Content` if there are no payments to settle.</Info>


## OpenAPI

````yaml POST /v1/settlements/process
openapi: 3.1.0
info:
  title: Plexos Pay API
  description: Mobile Money Payment Gateway for African Markets
  version: 1.0.0
  contact:
    name: Plexos Pay
    url: https://plexospay.com
servers:
  - url: https://api.plexospay.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/settlements/process:
    post:
      tags:
        - Settlements
      summary: Process settlement
      description: Manually trigger settlement processing.
      operationId: processSettlement
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                currency:
                  $ref: '#/components/schemas/Currency'
      responses:
        '200':
          description: Settlement processed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Settlement'
        '204':
          description: No payments to settle
components:
  schemas:
    Currency:
      type: string
      enum:
        - CVE
        - AOA
      description: ISO currency code
    Settlement:
      type: object
      properties:
        id:
          type: string
          example: se_abc123
        merchantId:
          type: string
        amount:
          type: string
        feeTotal:
          type: string
        netAmount:
          type: string
        currency:
          $ref: '#/components/schemas/Currency'
        amountFormatted:
          type: string
        netAmountFormatted:
          type: string
        status:
          $ref: '#/components/schemas/SettlementStatus'
        periodStart:
          type: string
          format: date-time
        periodEnd:
          type: string
          format: date-time
        payoutRef:
          type: string
          nullable: true
        itemCount:
          type: integer
        createdAt:
          type: string
          format: date-time
        processedAt:
          type: string
          format: date-time
          nullable: true
        completedAt:
          type: string
          format: date-time
          nullable: true
    SettlementStatus:
      type: string
      enum:
        - PENDING
        - PROCESSING
        - COMPLETED
        - FAILED
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with `sk_live_` or `sk_test_`

````