DELETE
/statuses/{statusId}Delete a status
Delete a status by ID. Cannot delete the default status or a status with assigned posts.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
statusIdrequired | path | string | Status ID |
Errors
204Status deleted401Unauthorized403Cannot delete (default status or has posts)404Status not foundExample request
curl \
-X DELETE \
"https://feedback.quackback.io/api/v1/statuses/:statusId" \
-H "Authorization: Bearer qb_your_api_key_here"