Categories
Delete category
DELETE
https://api.woowup.com/apiv3/categories
Delete a parent category and their childs
Request Body
Name
Type
Description
code
string
Category code
notify_to
string
email to receive the confirmation
{
"payload": {
"request_id": "xxxx"
},
"message": "ok",
"code": "ok",
"time": "62ms"
}
Example
curl -X DELETE \
https://api.woowup.com/apiv3/categories \
-H 'Accept: application/json' \
-H 'Authorization: Basic XXXXXXXXXXXXXXXXXXXX' \
-H 'Content-Type: application/json' \
-d '{
"code": "abcd",
"notify_to": "test@email.com"
}'
Response
{
"payload": {
"request_id": "XXXX"
},
"message": "ok",
"code": "ok",
"time": "62ms"
}
Delete categories (bulk)
DELETE
https://api.woowup.com/apiv3/categories/bulk
Delete all categories
Request Body
Name
Type
Description
notify_to
string
email to receive the confirmation
{
"payload": {
"request_id": "xxxx"
},
"message": "ok",
"code": "ok",
"time": "62ms"
}
Example
curl -X DELETE \
https://api.woowup.com/apiv3/categories/bulk \
-H 'Accept: application/json' \
-H 'Authorization: Basic XXXXXXXXXXXXXXXXXXXX' \
-H 'Content-Type: application/json' \
-d '{
"notify_to": "test@email.com"
}'
Response
{
"payload": {
"request_id": "XXXX"
},
"message": "ok",
"code": "ok",
"time": "62ms"
}
Last updated
Was this helpful?