Skip to content

Delete fulfillmentOrder from picking batch

DELETE
/merchants/{merchantCode}/pickingBatches/{pickingBatchId}/fulfillmentOrders
curl --request DELETE \
--url https://order.shopgate.io/v1/merchants/example/pickingBatches/example/fulfillmentOrders \
--header 'Content-Type: application/json' \
--data '{ "fulfillmentOrderNumbers": [ "10001-0001" ] }'

Delete fulfillmentOrder from picking batch

merchantCode
required
string

Unique merchant code which represents the unique “merchant account”.

pickingBatchId
required
string
Media typeapplication/json
object
fulfillmentOrderNumbers
required
Array<string>
>= 1 items

Fulfillment order removed from PickingBatch

Media typeapplication/json
object
errors
Array<object>
object
entityIndex
number
entity
string
entityId
string
code
number
message
string
subentityPath
Array<string | null | number>
Examplegenerated
{
"errors": [
{
"entityIndex": 1,
"entity": "example",
"entityId": "example",
"code": 1,
"message": "example",
"subentityPath": [
"example"
]
}
]
}

Merchant or Picking Batch not found

Media typeapplication/json