This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Deletes multiple ribbons.
You can only call this method when authenticated as a Wix app or Wix user identity.
IDs of ribbons to delete.
Ribbons deleted by bulk action.
Bulk action metadata.
Delete 2 ribbons at once
curl -X POST \
'https://www.wixapis.com/stores/v3/bulk/ribbons/delete' \
-H 'Content-type: application/json' \
-H 'Authorization: <AUTH>' \
-d '{
"ribbonIds": [
"b3b45015-5fc8-45c0-bf72-d1c4271e0439",
"a05cae3a-d9e3-45c2-8811-01d682ed828c"
]
}'
{
"results": [
{
"id": "b3b45015-5fc8-45c0-bf72-d1c4271e0439",
"originalIndex": 0,
"success": true
},
{
"id": "a05cae3a-d9e3-45c2-8811-01d682ed828c",
"originalIndex": 1,
"success": true
}
],
"bulkActionMetadata": {
"totalSuccesses": 2,
"totalFailures": 0,
"undetailedFailures": 0
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.