curl --request PUT \
--url https://prod01.copilot.fabric.inc/data-subscription/v1/orders/{orderId}/skip \
--header 'Authorization: Bearer <token>'
{
"responseStatus": "OK",
"message": "Request processed successfully",
"data": {
"Order": {
"id": "6384462ab645220008a4358a",
"status": "SKIPPED"
},
"dateSkipped": "2020-01-01T00:00:00.000Z",
"nextScheduledOrders": {
"newOrders": [
"62d51ab385a8cd00092eb8b7"
],
"subscriptions": [
"62d51ab385a8cd00092eb8b7"
]
},
"errors": [
{
"lineItemId": 1,
"code": "SUBSCRIPTION_NOT_FOUND"
}
]
}
}
Skip order specified by order ID
curl --request PUT \
--url https://prod01.copilot.fabric.inc/data-subscription/v1/orders/{orderId}/skip \
--header 'Authorization: Bearer <token>'
{
"responseStatus": "OK",
"message": "Request processed successfully",
"data": {
"Order": {
"id": "6384462ab645220008a4358a",
"status": "SKIPPED"
},
"dateSkipped": "2020-01-01T00:00:00.000Z",
"nextScheduledOrders": {
"newOrders": [
"62d51ab385a8cd00092eb8b7"
],
"subscriptions": [
"62d51ab385a8cd00092eb8b7"
]
},
"errors": [
{
"lineItemId": 1,
"code": "SUBSCRIPTION_NOT_FOUND"
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Order ID
"606f01f441b8fc0008529916"
Request processed successfully
Skipped order details
Was this page helpful?