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

# Submit PLACI

> Submit Pre-Loading Advance Cargo Info

Submit Pre-Loading Cargo Information (PLACI).

<ParamField status="200" type="object">
  <ParamField name="placiId" type="string">
    Unique PLACI identifier
  </ParamField>

  <ParamField name="status" type="string">
    Submission status
  </ParamField>
</ParamField>

<ParamField status="400" type="object">
  <ParamField name="error" type="string">
    Error message
  </ParamField>
</ParamField>

<ParamField status="401" type="object">
  <ParamField name="error" type="string">
    Unauthorized error message
  </ParamField>
</ParamField>

### Reference Documentation

<Info>
  For more information on PLACI data submission, please refer to:

  * Pages 142-143 of "Functional\_Requirements\_V18 FINAL": [https://belli.sg/4nxxCDR](https://belli.sg/4nxxCDR)
</Info>


## OpenAPI

````yaml POST /api/placi
openapi: 3.0.3
info:
  title: Mock API
  version: 1.0.0
  description: >-
    Mock OpenAPI spec for QR API Service. All endpoints require API key
    authentication via 'Authorization: Bearer <token>' or 'x-api-key: <token>'
    headers.
servers:
  - url: https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io
    description: Production server
security:
  - ApiKeyAuth: []
  - ApiKeyHeader: []
tags:
  - name: auth-v1
    description: Authentication and user management
  - name: reference-data-v1
    description: Reference data and master data
  - name: flights-v1
    description: Flight schedules and capacity
  - name: quotes-v1
    description: Quotation and pricing
  - name: awb-stock-v1
    description: AWB Stock Management
  - name: bookings-v1
    description: Booking management
  - name: shipments-v1
    description: Shipment documents and tracking
  - name: compliance-v1
    description: Compliance and safety declarations
  - name: operations-v1
    description: Operational events and manifests
  - name: webhooks-v1
    description: Webhook management
  - name: admin-v1
    description: Administrative and audit functions
  - name: qr-exp-cgo-ext-availability-v1
    description: Legacy availability service
  - name: qr-exp-cgo-ext-booking-v1
    description: Legacy booking service
  - name: qr-exp-cgo-ext-flight-schedules-v1
    description: Legacy flight schedules service
  - name: qr-exp-cgo-shipments-v1
    description: Legacy shipments service
  - name: qr-exp-cgo-stock-v1
    description: Legacy stock service
  - name: qr-exp-cgo-tables-v1
    description: Legacy table data service
paths:
  /api/placi:
    post:
      tags:
        - compliance-v1
      summary: Submit PLACI
      description: Submit Pre-Loading Advance Cargo Info
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PLACIRequest'
      responses:
        '201':
          description: PLACI submitted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PLACIResponse'
components:
  schemas:
    PLACIRequest:
      type: object
      properties:
        awbNumber:
          type: string
          example: '15712345678'
        origin:
          type: string
          example: DOH
        destination:
          type: string
          example: LHR
        departureDate:
          type: string
          format: date
          example: '2024-01-01'
        cargoDescription:
          type: string
          example: General cargo
        shipperName:
          type: string
          example: Example Shipper
        consigneeName:
          type: string
          example: Example Consignee
      required:
        - awbNumber
        - origin
        - destination
        - departureDate
        - cargoDescription
        - shipperName
        - consigneeName
    PLACIResponse:
      type: object
      properties:
        placiId:
          type: string
          example: placi-123
        awbNumber:
          type: string
          example: '15712345678'
        status:
          type: string
          example: submitted
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````