Port Catalyst API
  1. Shipments
Port Catalyst API
  • Start your Port Catalyst Journey
  • Authorization
    • Get Authorization Token
      POST
  • Shipments
    • Simple Order
      POST
    • Create Order
      POST
    • Bulk Order
      POST
  • WebHook
    • Tracking Update Webhook
  1. Shipments

Bulk Order

Developing
POST
/bulk_create_orders

Request

Header Params

Body Params application/json

Examples

Responses

đŸŸĸ200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/bulk_create_orders' \
--header 'Authorization: Bearer 11|NSP8dVGkwZErX2ZQabpfQI0CoaOLmFi2q8abvjrvOyk4yT2Vnmc1rEjmATXtkzgZztJxkjZduaOGne9a' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
  "data": [
    {
      "invoice": "BLpK-05",
      "recipient_name": "āφāĻšāĻŽāĻĻ āĻ•āϰāĻŋāĻŽ",
      "recipient_phone": "01711111111",
      "recipient_address": "āĻĸāĻžāĻ•āĻž",
      "cod_amount": 1000.00,
      "items": [
        {
          "description": "T-Shirt",
          "weight": 0.3
        }
      ]
    },
    {
      "invoice": "BUK-p02",
      "recipient_name": "āĻĢāĻžāϤāĻŋāĻŽāĻž āĻ–āĻžāϤ⧁āύ",
      "recipient_phone": "01811111111",
      "recipient_address": "āϚāĻŸā§āϟāĻ—ā§āϰāĻžāĻŽ",
      "cod_amount": 1500.00,
      "items": [
        {
          "description": "Dress",
          "weight": 0.4
        },
        {
          "description": "Dupatta",
          "weight": 0.1
        }
      ]
    }
  ]
}'
Response Response Example
{
    "status": 200,
    "message": "Shipment has been created successfully.",
    "shipment": {
        "shipment_id": 1,
        "invoice": "ORD-2025-001",
        "tracking_number": "PC2025073122356",
        "recipient_name": "āϜāύ āĻĄā§‹",
        "recipient_phone": "01711111111",
        "recipient_address": "āĻĸāĻžāĻ•āĻž, āĻŦāĻžāĻ‚āϞāĻžāĻĻ⧇āĻļ",
        "cod_amount": "1500.00",
        "status": "in_review",
        "note": "āϏāĻžāĻŦāϧāĻžāύ⧇ āĻšā§āϝāĻžāĻ¨ā§āĻĄā§‡āϞ āĻ•āϰāĻŦ⧇āύ",
        "created_at": "2025-07-31T00:58:37.000000Z",
        "updated_at": "2025-07-31T00:58:37.000000Z"
    }
}
Modified at 2025-07-31 22:44:15
Previous
Create Order
Next
Tracking Update Webhook
Built with