Разработчикам
Вам необходимо прислать нам ссылку http://example.com/quest_id, которая вернет JSON объект (пример ниже). Ссылка должна быть доступна по GET запросу. Нам необходимо получить от вас расписание на 14 дней, включая текущий день.
Список параметров:
Важно!!! Обязательно формируйте JSON в том виде в каком он указан в нижеприведенном примере. Пример формируемого JSON'a:
[{ "date": "2022-08-16", "games": [{ "timeGame": "10:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "1" }, { "timeGame": "11:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "0" }, { "timeGame": "12:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "1" }] }, { "date": "2022-08-17", "games": [{ "timeGame": "10:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "0" }, { "timeGame": "11:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "0" }, { "timeGame": "12:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "0" }] }, ... ... { "date": "2022-08-30", "games": [{ "timeGame": "10:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "1" }, { "timeGame": "11:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "1" }, { "timeGame": "12:00:00", "orderUrl": "http://example.com/quest_id/date_item_id", "busy": "1" }] }]