GET /tasks
Выводит список задач портала.
Адрес: GET https://instance_name/api/data/v1.3/tasks/
Content-type: application/json
Параметры тела запроса
limit
integer
Количество результатов, которые возвращаются в ответе.
offset
integer
Начальный индекс, с которого возвращаются результаты.
Пример запроса
curl –i –X GET
https://test.inspector-cloud.com/api/data/v1.3/tasks/
-H ‘Authorization: Token <<your_token>>’
Пример ответа
Код ответа: 200
{
"count": 45,
"next": null,
"previous": "https://test.inspector-cloud.com/api/data/v1.0/tasks/?limit=30&offset=30",
"results": [
{
"id": 111,
"name": "Кофе домашняя полка",
"short_description": null,
"long_description": "",
"is_enabled": true,
"is_required": false
},
{
"id": 125,
"name": "Required photo task",
"short_description": "I am a task, you know what to do",
"long_description": "Enjoy sea reveal brother fall owner. Speak pass heart she.\r\nCut piece purpose free opportunity around. Writer whether central improve point personal service. Only western physical another.",
"is_enabled": false,
"is_required": false
},
{
"id": 152,
"name": "Required task",
"short_description": "I am a task, you know what to do",
"long_description": "Response school trial western. Ago phone develop. Attorney former management form time gas.\r\nRace this better perhaps child. Together many customer national without common your.",
"is_enabled": false,
"is_required": true
}
...
]
}
Параметры ответа
count
integer
next
string (uri) Nullable
Следующая страница списка.
previous
string (uri) Nullable
Предыдущая страница списка.
results
Array of objects
Обязательный. Массив объектов с информацией по задачам.
id
integer
Идентификатор задачи.
name
string [ 1 .. 255 ] символов
short_description
string <= 255 символов
Nullable
Короткое описание задачи.
long_description
string Nullable
Полное описание задачи.
is_enabled
boolean
is_required
boolean