POST
/
order
/
{orderId}
/
storeOrderJson
curl --request POST \
  --url https://api.shipbob.com/1.0/order/{orderId}/storeOrderJson \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "order_json": "string"
}'
"string"

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Path Parameters

orderId
string
required

The order ID to Store

Body

application/json
The JSON that represent the order on the Third Party Source

Model for adding a Store Order Json to a ShipBob Order.

order_json
string

Json String that represent the order on a store front system

Minimum length: 1

Response

201
application/json
Created

The response is of type string.

Was this page helpful?