Restore a Status
This endpoint restores a status
info
This operation requires authentication. The logged user must be the status creator.
HTTP Request
POST /api/v2/status/{id}/restore/
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | A unique integer value identifying this status. |
Example Request
- JavaScript
- Bash
fetch('/api/v2/status/{id}/restore/',
{
method: 'POST',
headers: {
'Authorization': 'Bearer {access_token}'
}
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X POST /api/v2/status/{id}/restore/
-H 'Authorization: Bearer {access_token}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Response status code | None |