Skip to main content
DELETE
/
dev
/
v1
/
products
/
{id}
/
serials
Remove product serials
curl --request DELETE \
  --url https://api.shoppex.io/dev/v1/products/{id}/serials \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "serial_ids": [
    "serial_1"
  ]
}
'
{
  "data": {
    "removed_count": 1
  }
}

Authorizations

Authorization
string
header
required

Use your Shoppex API key in the Authorization header.

Path Parameters

id
string
required

Body

serial_ids
string[]
required

Response

200 - application/json

Successful response

data
object