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

Create Order

Developing
POST
/create_order

Request

Header Params

Body Params application/json

Examples

Responses

đŸŸĸ200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/create_order' \
--header 'Authorization: Bearer 9|UhgMPlArwiOJAvCjHamE7erzDQHLbfwTinSItRaFlvBbyJ62tAYy2XnI8aPO0Cw1mMYGdHoGhPefjfsQ' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
  "invoice": "ORD-2025-5552",
  "recipient_name": "Anas Hasan",
  "recipient_phone": "01811111111",
  "recipient_address": "āϚāĻŸā§āϟāĻ—ā§āϰāĻžāĻŽ, āĻŦāĻžāĻ‚āϞāĻžāĻĻ⧇āĻļ",
  "cod_amount": 2500.00,
  "note": "āĻĢā§āĻ°ā§āϝāĻžāϜāĻžāχāϞ āφāχāĻŸā§‡āĻŽ",
  "items": [
    {
      "description": "iPhone 15 Pro",
      "weight": 0.5
    },
    {
      "description": "Phone Case",
      "weight": 0.1
    },
    {
      "description": "Screen Protector",
      "weight": 0.05
    }
  ]
}'
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 04:06:49
Previous
Simple Order
Next
Bulk Order
Built with