Skip to main content
POST
/
v1
/
orders
/
{id}
/
remove-items
Remove items from single order
curl --request POST \
  --url https://prod01.copilot.fabric.inc/data-subscription/v1/orders/{id}/remove-items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lineItemIds": [
    1
  ]
}
'
{
  "responseStatus": "OK",
  "message": "Request processed successfully",
  "data": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Order ID General object ID

Example:

"606f01f441b8fc0008529916"

Body

application/json

Remove items from order

lineItemIds
integer[]

Line items to remove from order

Response

Request processed successfully

Order details after removing items from order

responseStatus
string

Brief response status

Example:

"OK"

message
string

Full response message

Example:

"Request processed successfully"

data
object

Order details