curl --request DELETE \
--url https://api.royalti.io/labels/{labelId}/products/{productId} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "Product removed from label successfully"
}Remove Product from Label
curl --request DELETE \
--url https://api.royalti.io/labels/{labelId}/products/{productId} \
--header 'Authorization: Bearer <token>'{
"status": "success",
"message": "Product removed from label successfully"
}Documentation Index
Fetch the complete documentation index at: https://apidocs.royalti.io/llms.txt
Use this file to discover all available pages before exploring further.
const response = await fetch('https://api.royalti.io/labels/example-id/products/example-id', {
method: 'DELETE',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"