Skip to main content
POST
/
v1
/
subscriptions
/
discontinued-items
Discontinue items in subscription
curl --request POST \
  --url https://prod01.copilot.fabric.inc/data-subscription/v1/subscriptions/discontinued-items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sku": [
    "MOBO-X570"
  ]
}
'
{
  "responseStatus": "OK",
  "message": "This request to replace items is currently being processed. Once done, we will update you via your webhooks (your webhooks need to be configured). Refer to our documentation on more information on webhooks."
}

Authorizations

Authorization
string
header
required

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

Body

application/json

SKUs of items to be discontinued

sku
string[]

SKUs

Item SKU

Response

200 - application/json

Request processed successfully

Replace item response

responseStatus
string

Brief response status

Example:

"OK"

message
string

Full response message

Example:

"This request to replace items is currently being processed. Once done, we will update you via your webhooks (your webhooks need to be configured). Refer to our documentation on more information on webhooks."