Skip to main content

Delete a Status

This endpoint deletes a status

info

This operation requires authentication. The logged user must be the status creator.

HTTP Request

DELETE /api/v2/status/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this status.

Example Request

fetch('/api/v2/status/{id}/',
{
method: 'DELETE',
headers: {
'Authorization': 'Bearer {access_token}'
}

})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone