Delete a status

POST /status/destroy
application/x-www-form-urlencoded

Body Required

  • id integer

    The id of the status to delete

Responses

  • 200

    Status deleted successfully

  • 404

    Status not found

POST /status/destroy
curl \
 -X POST https://blips.club/status/destroy \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'id=42'
Request example
{
  "id": 42
}