Skip to main content
POST
/
api
/
openapi
/
order
cURL
curl --request POST \
  --url http://api.poderp.com/api/openapi/order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "uniqueRequestId": "<string>",
  "orderItems": [
    {
      "orderNo": "<string>",
      "recipient": {
        "receiverName": "<string>",
        "country": "<string>",
        "state": "<string>",
        "city": "<string>",
        "postcode": "<string>",
        "address1": "<string>",
        "phone": "<string>",
        "remark": "<string>",
        "email": "[email protected]"
      },
      "product": {
        "spu": "<string>",
        "size": "<string>",
        "color": "<string>",
        "quantity": 123
      },
      "imageUrls": []
    }
  ]
}
'
This response has no body data.
This is an open API endpoint that allows customers to import their orders into the system.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Order details

uniqueRequestId
string
required
orderItems
object[]
required

Response