This commit is contained in:
max 2022-09-22 11:38:27 +03:00
parent a25a57255f
commit ea2a4db5f3

View File

@ -122,7 +122,6 @@ REQUEST:
} }
``` ```
RESPONSE: RESPONSE:
CODES: 201, 400, 403, 502
```json ```json
{ {
@ -147,17 +146,23 @@ RESPONSE:
"watchers": [ "watchers": [
{ {
"id": 11, "id": 11,
"title": "emex.ru", "kind" : "source", // rival | source - rival процениваемый сайт, source ваши исходные данные
"type" : "file", // site | file - site тип данных челевой сайт, file - тип данных фаил
"title": "test 1",
"state": "processing", // Состояние конкретного магазина "state": "processing", // Состояние конкретного магазина
"progress": 20, // его прогресс "progress": 20, // его прогресс
"started_at": "2019-10-12T07:20:50.52Z" "updated_at": "2019-10-12T07:20:50.52Z" // дата последней обновленной записи
}, },
{ {
"id": 12, "comment": "Сканирование...",
"title": "autopiter.ru", "id": 22850,
"state": "idle", "kind": "rival",
"finished_at": "2019-10-12T07:20:50.52Z" "progress": 10,
} "started_at": "2022-09-22T11:34:43+03:00",
"state": "processing",
"title": "emex.ru",
"type": "site"
}
] ]
} }
``` ```