Base URL
DELETE
https://v1.empr.cloud/api/v1/folders/{folderId}/statuses
Request
Request headers
Headers
Название
Тип / Значение
Описание
X-Token
String
Auth token
URL Parameters
Query parameters
Название
Тип / Значение
Описание
folderId
UUID
The ID of the folder
Request body
Request body
Название
Тип / Значение
Описание
status_ids
Array<UUID>
Array of status IDs
Request example
1const url =
2 "https://v1.empr.cloud/api/v1/folders/{folderId}/statuses";
3
4const body = {
5 "status_ids": [
6 "e3b7b1e0-9b0a-4c9a-8b9a-9b0a4c9a8b9a"
7 ]
8}
9
10const options = {
11 method: "DELETE",
12 headers: {
13 "X-Token": "Your Token",
14 "Content-Type": "application/json"
15 },
16 body: JSON.stringify(body)
17};
18
19fetch(url, options)
20 .then((response) => {
21 response.json().then((data) => {
22 console.log(data);
23 });
24 })
25 .catch((error) => {
26 console.error(error);
27 });
Response
Response data
Response
Название
Тип / Значение
Описание
data
Array<>
Empty array
Response example
1{
2 "data": []
3}