Секции: список и создание
POST /api/v3/teams/{team_uid}/group-sections
Создание секции. Единственное обязательное поле при создании — name
.
Рассылает события:
server.section.updated
Пример запроса:
{
"name": "Группа №1"
}
Пример ответа:
{
"_time": "35 ms",
"ok": true,
"result": {
"gentime": 1569546020017176576,
"name": "Группа №1",
"sort_ordering": 50,
"uid": "4ca2b48a-eae4-4109-a758-d28f5160ea41"
}
}
GET /api/v3/teams/{team_uid}/group-sections
Cписок секций. Без разбивки по страницам, т.к. секции нужны все.
Пример ответа:
{
"_time": "10 ms",
"ok": true,
"result": [
{
"gentime": 1568823807351276544,
"name": "Группа №1",
"sort_ordering": 10,
"uid": "545abb14-aab7-478d-8aa8-f46351bf41c8"
},
{
"gentime": 1568825367467456000,
"name": "Группа №1",
"sort_ordering": 20,
"uid": "6f15c164-2506-424e-8c2f-4b5d5ed95f35"
},
{
"gentime": 1569200181572770048,
"name": "Группа №1",
"sort_ordering": 30,
"uid": "41c24725-22b4-4570-aa64-d5853839c295"
},
{
"gentime": 1569200595027406080,
"name": "Группа №1",
"sort_ordering": 40,
"uid": "d0135795-ebdf-45b5-8f0c-e0f2f9c2f539"
},
{
"gentime": 1569546020017176576,
"name": "Группа №1",
"sort_ordering": 50,
"uid": "4ca2b48a-eae4-4109-a758-d28f5160ea41"
}
]
}
Остальные операции такие же, как и с отделами.
Групповые чаты и их участники
POST /api/v3/teams/{team_uid}/groups
Создание группы.
Рассылает события:
server.chat.updated
Пример запроса:
{
"description": "описание, не обязательное",
"display_name": "Главрыба",
"members": [
{
"jid": "d-fe024245-697b-4d5d-a355-ef0192ec5b71",
"status": "member"
}
],
"num_members": 1,
"public": true,
"section": "4ca2b48a-eae4-4109-a758-d28f5160ea41"
}
Пример ответа:
{
"_time": "7.3 s",
"ok": true,
"result": {
"can_add_member": true,
"can_call": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"can_send_message": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Главрыба",
"gentime": 1569546020504851968,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%93/256.png"
},
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"notifications_enabled": true,
"num_members": 2,
"public": true,
"section": "4ca2b48a-eae4-4109-a758-d28f5160ea41",
"status": "admin"
}
}
GET /api/v3/teams/{team_uid}/groups
Список групп. Без разбивки по страницам, хотя, теоретически,
здесь их может быть много. Но в /api/v3/teams/[TeamUID]/roster/
они тоже отдаются все вместе.
Пример ответа:
{
"_time": "326 ms",
"ok": true,
"result": [
{
"can_add_member": true,
"can_call": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"can_send_message": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Главрыба",
"gentime": 1569546021757059564,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%93/256.png"
},
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"last_message": {
"chat": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Новые участники: @Контакт_№395, @Контакт_№7",
"title": "Новые участники: @Контакт_№395, @Контакт_№7",
"type": "change"
},
"created": "2019-09-27T01:00:21.756957Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546021757059564,
"is_last": true,
"links": [
{
"_notify_ids": [
1134
],
"_status": 1,
"pattern": "@Контакт_№395",
"text": "@Контакт №395",
"url": "otv://d-0b1b2362-fb69-4dd6-8bfb-90c89517168d"
}
],
"message_id": "826e2a94-20d7-43e0-bc56-b72d56c473d5",
"notice": true,
"prev": "2baf437e-8205-4714-a0f8-97af09e3e5b0",
"to": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
"notifications_enabled": true,
"num_members": 2,
"public": true,
"section": "4ca2b48a-eae4-4109-a758-d28f5160ea41",
"status": "admin"
},
{
"can_add_member": true,
"can_call": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"can_send_message": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-23T01:03:15.404931Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"draft_num": 334,
"gentime": 1569419237553947041,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/%D0%90/256.png"
},
"jid": "g-9ed2594e-9ba9-46f7-bc59-e53ee861298c",
"last_message": {
"chat": "g-9ed2594e-9ba9-46f7-bc59-e53ee861298c",
"chat_type": "group",
"content": {
"text": "`tada/tada_back` `master` *smee_again* 18.09.2019\nменьше питона\nhttps://bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee899b605d6ba4664bb1f702\n\n`tada/tada_back` `master` *smee_again* 18.09.2019\nsql оптимизации\nhttps://bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1d01ddfbffef67b0f1e6a",
"type": "plain"
},
"created": "2019-09-25T13:47:17.553933Z",
"editable_until": "2019-09-25T13:47:17.553933Z",
"from": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"gentime": 1569419237553947041,
"is_last": true,
"links": [
{
"_cached": true,
"_status": 1,
"pattern": "https://bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1d01ddfbffef67b0f1e6a",
"text": "bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1...",
"url": "https://bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1d01ddfbffef67b0f1e6a"
},
{
"_cached": true,
"_status": 1,
"pattern": "https://bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee899b605d6ba4664bb1f702",
"text": "bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee89...",
"url": "https://bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee899b605d6ba4664bb1f702"
}
],
"message_id": "8aae9ea7-3264-45ae-892d-2c9e235ff73c",
"nopreview": true,
"prev": "1ed209e3-798e-45d9-bb41-b2ab6de1412e",
"to": "g-9ed2594e-9ba9-46f7-bc59-e53ee861298c"
},
"last_read_message_id": "8aae9ea7-3264-45ae-892d-2c9e235ff73c",
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
]
}
Черновики
POST /api/v3/teams/{team_uid}/draft/{chat_jid}
Сохранить черновик чата. Заодно проверяет ссылки
Пример запроса:
{
"draft": "раз ya.ru — @все два google.com",
"draft_num": 333
}
Пример ответа:
{
"_time": "4.6 s",
"ok": true,
"result": {
"draft": "раз ya.ru — @все два google.com",
"draft_num": 333,
"links": [
{
"pattern": "@все",
"text": "@все",
"url": "otv://g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
{
"_network": "2.2 s",
"pattern": "ya.ru",
"preview": {
"title": "Яндекс"
},
"text": "ya.ru",
"uploads": [
{
"content_type": "image/png",
"name": "share-logo_ru.png",
"preview": {
"height": 240,
"url": "http://127.0.0.1:8000/u/2ea4fe14841143b88e839a71d6802d20/p/1x.jpg",
"url_2x": "http://127.0.0.1:8000/u/2ea4fe14841143b88e839a71d6802d20/p/2x.jpg",
"width": 240
},
"size": 2746,
"uid": "2ea4fe14-8411-43b8-8e83-9a71d6802d20",
"url": "http://127.0.0.1:8000/u/2ea4fe14841143b88e839a71d6802d20/share-logo_ru.png"
}
],
"url": "http://ya.ru"
},
{
"_network": "4.1 s",
"pattern": "google.com",
"preview": {
"title": "Google"
},
"text": "google.com",
"uploads": [
{
"content_type": "image/png",
"name": "googles-21st-birthday-6038069261107200-2x.png",
"preview": {
"height": 440,
"url": "http://127.0.0.1:8000/u/04cfe7ee420b46d2b9d9bad4f4156f88/p/1x.jpg",
"url_2x": "http://127.0.0.1:8000/u/04cfe7ee420b46d2b9d9bad4f4156f88/p/2x.jpg",
"width": 1037
},
"size": 110565,
"uid": "04cfe7ee-420b-46d2-b9d9-bad4f4156f88",
"url": "http://127.0.0.1:8000/u/04cfe7ee420b46d2b9d9bad4f4156f88/googles-21st-birthday-6038069261107200-2x.png"
}
],
"url": "http://google.com"
}
]
}
}
GET /api/v3/teams/{team_uid}/draft/{chat_jid}
Черновик чата.
Пример ответа:
{
"_time": "1.3 s",
"ok": true,
"result": {
"draft": "раз ya.ru — @все два google.com",
"draft_num": 333
}
}
DELETE /api/v3/teams/{team_uid}/draft/{chat_jid}
Удалить черновик чата.
Пример ответа:
{
"_time": "83 ms",
"ok": true,
"result": {
"draft": "",
"draft_num": 334
}
}
POST /api/v3/teams/{team_uid}/groups/{group_jid}/members
Добавление участника группы
Рассылает события:
server.chat.updated
Пример запроса:
{
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"status": "admin"
}
Пример ответа:
{
"_time": "1.8 s",
"ok": true,
"result": {
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"status": "admin"
}
}
GET /api/v3/teams/{team_uid}/groups/{group_jid}/members
Участники группы
Пример ответа:
{
"_time": "116 ms",
"ok": true,
"result": {
"members": [
{
"can_remove": true,
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"status": "admin"
},
{
"can_remove": true,
"jid": "d-fe024245-697b-4d5d-a355-ef0192ec5b71",
"status": "member"
},
{
"can_remove": true,
"jid": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"status": "admin"
}
]
}
}
GET /api/v3/teams/{team_uid}/groups/{group_jid}/members/{contact_jid}
Статус участника группы.
Пример ответа:
{
"_time": "231 ms",
"ok": true,
"result": {
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"status": "admin"
}
}
PUT /api/v3/teams/{team_uid}/groups/{group_jid}/members/{contact_jid}
Изменение статуса участника группы.
Рассылает события:
server.chat.updated
Пример запроса:
{
"status": "member"
}
Пример ответа:
{
"_time": "138 ms",
"ok": true,
"result": {
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"status": "admin"
}
}
DELETE /api/v3/teams/{team_uid}/groups/{group_jid}/members/{contact_jid}
Удаление участника группы.
Рассылает события:
server.chat.updated
server.chat.deleted
Пример ответа:
{
"_time": "645 ms",
"ok": true,
"result": {}
}
Картинка группы. Работает точно так же, как и другие загрузки картинок (см. выше).
POST /api/v3/teams/{team_uid}/groups/{group_jid}/icons
Загрузка или замена.
Рассылает события:
server.chat.updated
Пример запроса:
{}
Пример ответа:
{
"_time": "5.7 s",
"ok": true,
"result": {
"lg": {
"height": 1024,
"url": "http://127.0.0.1:8000/u/6c2f0e0204bb472eb25f8864a4248126/p/1x.jpg",
"width": 1736
},
"sm": {
"height": 256,
"url": "http://127.0.0.1:8000/u/6c2f0e0204bb472eb25f8864a4248126/p/256.jpg",
"width": 256
}
}
}
DELETE /api/v3/teams/{team_uid}/groups/{group_jid}/icons
Удаление картинки, если есть.
Рассылает события:
server.chat.updated
Пример ответа:
{
"_time": "109 ms",
"ok": true,
"result": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%93/256.png"
}
}
GET /api/v3/teams/{team_uid}/groups/{group_jid}
Информация о группе
Пример ответа:
{
"_time": "106 ms",
"ok": true,
"result": {
"can_add_member": true,
"can_call": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"can_send_message": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Главрыба",
"draft_num": 334,
"gentime": 1569546053342590976,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%93/256.png"
},
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"last_message": {
"chat": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Новые участники: @Контакт_№395, @Контакт_№7",
"title": "Новые участники: @Контакт_№395, @Контакт_№7",
"type": "change"
},
"created": "2019-09-27T01:00:21.756957Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546021757059564,
"is_last": true,
"links": [
{
"_notify_ids": [
1134
],
"_status": 1,
"pattern": "@Контакт_№395",
"text": "@Контакт №395",
"url": "otv://d-0b1b2362-fb69-4dd6-8bfb-90c89517168d"
},
{
"_notify_ids": [
746
],
"_status": 1,
"pattern": "@Контакт_№7",
"text": "@Контакт №7",
"url": "otv://d-fe024245-697b-4d5d-a355-ef0192ec5b71"
}
],
"message_id": "826e2a94-20d7-43e0-bc56-b72d56c473d5",
"notice": true,
"prev": "2baf437e-8205-4714-a0f8-97af09e3e5b0",
"to": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
}
PUT /api/v3/teams/{team_uid}/groups/{group_jid}
Изменение группы.
Рассылает события:
server.chat.updated
Пример запроса:
{
"display_name": "Абырвалг"
}
Пример ответа:
{
"_time": "1.7 s",
"ok": true,
"result": {
"can_add_member": true,
"can_call": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"can_send_message": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"draft_num": 334,
"gentime": 1569546054233117696,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%90/256.png"
},
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"last_message": {
"chat": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Новые участники: @Контакт_№395, @Контакт_№7",
"title": "Новые участники: @Контакт_№395, @Контакт_№7",
"type": "change"
},
"created": "2019-09-27T01:00:21.756957Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546021757059564,
"is_last": true,
"links": [
{
"_notify_ids": [
1134
],
"_status": 1,
"pattern": "@Контакт_№395",
"text": "@Контакт №395",
"url": "otv://d-0b1b2362-fb69-4dd6-8bfb-90c89517168d"
},
{
"_notify_ids": [
746
],
"_status": 1,
"pattern": "@Контакт_№7",
"text": "@Контакт №7",
"url": "otv://d-fe024245-697b-4d5d-a355-ef0192ec5b71"
}
],
"message_id": "826e2a94-20d7-43e0-bc56-b72d56c473d5",
"notice": true,
"prev": "2baf437e-8205-4714-a0f8-97af09e3e5b0",
"to": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
}
DELETE /api/v3/teams/{team_uid}/groups/{group_jid}
Удаление группы.
Рассылает события:
server.chat.deleted
Пример ответа:
{
"_time": "263 ms",
"ok": true,
"result": {
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"draft_num": 334,
"gentime": 1569546055371145728,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%90/256.png"
},
"is_archive": true,
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"last_message": {
"chat": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"new": "Абырвалг",
"old": "Главрыба",
"text": "Изменилось название: Главрыба → Абырвалг",
"title": "Изменилось название",
"type": "change"
},
"created": "2019-09-27T01:00:55.339080Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546055339129253,
"is_last": true,
"message_id": "2ffd70ba-dcba-4d24-88a8-c221256eba36",
"prev": "fb41d71c-1031-4147-9e21-543f23caff28",
"to": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
}
Публичные групповые чаты
GET /api/v3/teams/{team_uid}/groups/public
Список публичных групп (кроме тех, где запрашивающий и так уже состоит)
Пример ответа:
{
"_time": "196 ms",
"ok": true,
"result": [
{
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-23T00:56:22.096259Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"gentime": 1569200247274839048,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%90/256.png"
},
"jid": "g-f2d5eab1-73f0-48f2-b742-22099243dace",
"last_message": {
"chat": "g-f2d5eab1-73f0-48f2-b742-22099243dace",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Создана задача: #6",
"title": "Создана задача: #6",
"type": "change"
},
"created": "2019-09-23T00:57:27.274821Z",
"editable_until": "2019-09-23T00:57:27.274821Z",
"from": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"gentime": 1569200247274839048,
"is_last": true,
"links": [
{
"_status": 1,
"pattern": "#6",
"text": "6. Первая строчка становится названием задачи",
"url": "otv://t-2eb5a8b7-6e15-4f85-960c-cfba4e3d6c69"
}
],
"message_id": "0ea89dca-9b86-422f-be85-806b560455a5",
"prev": "3343c95f-335d-4a4a-9e40-e2f53eb00387",
"to": "g-f2d5eab1-73f0-48f2-b742-22099243dace"
},
"notifications_enabled": true,
"num_members": 0,
"public": true,
"status": "member"
},
{
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-18T16:49:27.754356Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"gentime": 1569200168352320676,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/%D0%90/256.png"
},
"jid": "g-4cedcb6a-1449-441b-a0bd-4e9f65777f91",
"last_message": {
"chat": "g-4cedcb6a-1449-441b-a0bd-4e9f65777f91",
"chat_type": "group",
"content": {
"text": "пыщ!",
"type": "plain"
},
"created": "2019-09-23T00:56:08.352304Z",
"editable_until": "2019-09-24T00:56:08.352304Z",
"from": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"gentime": 1569200168352320676,
"is_last": true,
"message_id": "f40f04bf-c3e3-42cf-865d-6179399bbb5a",
"prev": "3f8746eb-149a-4fb3-ad7e-11cd070f28ca",
"to": "g-4cedcb6a-1449-441b-a0bd-4e9f65777f91"
},
"notifications_enabled": true,
"num_members": 0,
"public": true,
"status": "member"
},
{
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-18T16:23:27.470980Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"gentime": 1568823892973018823,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/%D0%90/256.png"
},
"jid": "g-95aed724-2cdc-4f2c-b087-31adaa169c94",
"last_message": {
"chat": "g-95aed724-2cdc-4f2c-b087-31adaa169c94",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Создана задача: #2",
"title": "Создана задача: #2",
"type": "change"
},
"created": "2019-09-18T16:24:52.972991Z",
"editable_until": "2019-09-18T16:24:52.972991Z",
"from": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"gentime": 1568823892973018823,
"is_last": true,
"message_id": "dbf46054-ad4b-42ec-a672-0ca06a373db0",
"prev": "6a21219f-b2ee-418f-a5b2-10b05b8c077f",
"to": "g-95aed724-2cdc-4f2c-b087-31adaa169c94"
},
"notifications_enabled": true,
"num_members": 0,
"public": true,
"status": "member"
},
{
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-18T05:59:24.908994Z",
"default_for_all": true,
"description": "Сюда автоматически попадают все участники команды",
"display_name": "Общий чат",
"gentime": 1568823795055422280,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/%D0%9E%D1%87/256.png"
},
"jid": "g-0983bf0f-a625-411f-a989-537140b748bc",
"last_message": {
"chat": "g-0983bf0f-a625-411f-a989-537140b748bc",
"chat_type": "group",
"content": {
"text": "пыщ!",
"type": "plain"
},
"created": "2019-09-18T16:23:15.055388Z",
"editable_until": "2019-09-19T16:23:15.055388Z",
"from": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"gentime": 1568823795055422280,
"is_last": true,
"message_id": "4cdb917f-e8de-422e-a969-955b0c2f1857",
"prev": "3dce88cf-bce8-4fa7-82f8-d5dadda8dfb9",
"to": "g-0983bf0f-a625-411f-a989-537140b748bc"
},
"notifications_enabled": true,
"num_members": 0,
"public": true,
"status": "member"
}
]
}
POST /api/v3/teams/{team_uid}/groups/public/{group_jid}/join
Вступить в публичную группу. Параметров не надо, и так сойдёт.
В ответ придут данные чата.
Пример запроса:
{}
Пример ответа:
{
"_time": "78 ms",
"ok": true,
"result": {
"can_add_member": true,
"can_call": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"can_send_message": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-23T01:03:15.404931Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"draft_num": 334,
"gentime": 1569419237553947041,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/%D0%90/256.png"
},
"jid": "g-9ed2594e-9ba9-46f7-bc59-e53ee861298c",
"last_message": {
"chat": "g-9ed2594e-9ba9-46f7-bc59-e53ee861298c",
"chat_type": "group",
"content": {
"text": "`tada/tada_back` `master` *smee_again* 18.09.2019\nменьше питона\nhttps://bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee899b605d6ba4664bb1f702\n\n`tada/tada_back` `master` *smee_again* 18.09.2019\nsql оптимизации\nhttps://bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1d01ddfbffef67b0f1e6a",
"type": "plain"
},
"created": "2019-09-25T13:47:17.553933Z",
"editable_until": "2019-09-25T13:47:17.553933Z",
"from": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"gentime": 1569419237553947041,
"is_last": true,
"links": [
{
"_cached": true,
"_status": 1,
"pattern": "https://bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1d01ddfbffef67b0f1e6a",
"text": "bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1...",
"url": "https://bitbucket.org/tada/tada_back/commits/72124c318fa16a14a2e1d01ddfbffef67b0f1e6a"
},
{
"_cached": true,
"_status": 1,
"pattern": "https://bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee899b605d6ba4664bb1f702",
"text": "bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee89...",
"url": "https://bitbucket.org/tada/tada_back/commits/c482af5ab743b831ee899b605d6ba4664bb1f702"
}
],
"message_id": "8aae9ea7-3264-45ae-892d-2c9e235ff73c",
"nopreview": true,
"prev": "1ed209e3-798e-45d9-bb41-b2ab6de1412e",
"to": "g-9ed2594e-9ba9-46f7-bc59-e53ee861298c"
},
"last_read_message_id": "8aae9ea7-3264-45ae-892d-2c9e235ff73c",
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
}
Ростер (контакты и группы команды)
GET /api/v3/teams/{team_uid}/roster
Все контакты и доступные группы (включая себя)
Пример ответа:
{
"_time": "611 ms",
"ok": true,
"result": {
"badge": 1,
"contact_sections": [
{
"gentime": 1568786364815431424,
"name": "Боты",
"sort_ordering": 10,
"uid": "8daeb4a2-4863-4953-bcf1-c58b84dc5272"
},
{
"gentime": 1568823795242420992,
"name": "NEW1568823795.1708887",
"sort_ordering": 20,
"uid": "bf2b80d6-2e2d-4354-b472-3f6d251f68f7"
},
{
"gentime": 1568823795644987136,
"name": "VIP 1568823795.628037",
"sort_ordering": 30,
"uid": "08619ff4-af05-4d17-a382-3532b0072645"
},
{
"gentime": 1568825360378622464,
"name": "NEW1568825360.3109188",
"sort_ordering": 40,
"uid": "ee3b4f5a-a61d-4599-84bf-ae910a75ec5b"
},
{
"gentime": 1568825361492193792,
"name": "VIP 1568825361.459122",
"sort_ordering": 50,
"uid": "851b6795-679b-4c14-a61d-cb9e10086769"
},
{
"gentime": 1569200168717389824,
"name": "NEW1569200168.4781644",
"sort_ordering": 60,
"uid": "9efc5ca6-8432-459e-a7d8-19b67b981943"
},
{
"gentime": 1569200169593559808,
"name": "VIP 1569200169.5647066",
"sort_ordering": 70,
"uid": "a8b7f362-e90e-4902-aa1a-676e5c47f99f"
},
{
"gentime": 1569200581546244864,
"name": "NEW1569200581.5054123",
"sort_ordering": 80,
"uid": "9de3c8e0-ffb0-4999-93fe-93bf04be030e"
},
{
"gentime": 1569200582510042624,
"name": "VIP 1569200582.0497446",
"sort_ordering": 90,
"uid": "3d66e58a-3931-4cb7-a91a-f7fe60e79392"
},
{
"gentime": 1569546004447252736,
"name": "NEW1569546004.3916154",
"sort_ordering": 100,
"uid": "a8b67997-5e11-449d-8b2c-5fe561ab3aa0"
},
{
"gentime": 1569546006108381440,
"name": "VIP 1569546006.076513",
"sort_ordering": 100,
"uid": "cfda66a8-3323-469d-99b2-111d1a60dc5a"
}
],
"contacts": [
{
"botname": "systembot",
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections"
],
"contact_email": "support@tada.team",
"contact_phone": "",
"display_name": "tada.teamBot",
"icons": {
"lg": {
"height": 512,
"url": "http://127.0.0.1:8000/static/tada-bots/systembot512.png",
"width": 512
},
"sm": {
"height": 256,
"url": "http://127.0.0.1:8000/static/tada-bots/systembot256.png",
"width": 256
}
},
"jid": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"last_activity": "2019-09-27T01:00:57.290603Z",
"role": "Виртуальный ассистент",
"sections": [],
"status": "member"
},
{
"botname": "echobot",
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "",
"display_name": "Козьма Прутков",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/%D0%9A%D0%9F/256.png"
},
"jid": "d-22d6fcd3-db7a-4bff-8d14-df472bdacf9f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000000",
"display_name": "Контакт №1",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/%D0%9A%E2%84%96/256.png"
},
"jid": "d-e9e48f05-f9f5-44a0-9c0c-c19bab9b064a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000009",
"display_name": "Контакт №10",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/10/256.png"
},
"jid": "d-d0719ec7-eeda-4336-99b4-ed2eb53dcafa",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000099",
"display_name": "Контакт №100",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/00/256.png"
},
"jid": "d-678710e7-18b7-4bd8-9616-7319160772f8",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000100",
"display_name": "Контакт №101",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/01/256.png"
},
"jid": "d-b341d7d6-ed6b-4cf6-bed3-b09c6f0a725f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000101",
"display_name": "Контакт №102",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/02/256.png"
},
"jid": "d-3b89e815-d5a9-4cb9-a663-4a9bc7789fe3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000102",
"display_name": "Контакт №103",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/03/256.png"
},
"jid": "d-b1d03e6b-331c-45f4-ae56-e2cdfcdca55a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000103",
"display_name": "Контакт №104",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/04/256.png"
},
"jid": "d-adc9ccb6-ded0-40b0-96af-aeb4d2cbefcd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000104",
"display_name": "Контакт №105",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/05/256.png"
},
"jid": "d-871151cc-4419-4cc9-95d8-21e287da3dfe",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000105",
"display_name": "Контакт №106",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/06/256.png"
},
"jid": "d-647c07ac-1b07-41f0-b8b5-ba5b62779889",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000106",
"display_name": "Контакт №107",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/07/256.png"
},
"jid": "d-33351e4b-3db9-4d82-b93b-eb7c90340015",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000107",
"display_name": "Контакт №108",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/08/256.png"
},
"jid": "d-9a889fe8-e42e-4467-9e4e-75369cdc59c4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000108",
"display_name": "Контакт №109",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/09/256.png"
},
"jid": "d-89d2d3a0-163c-4e93-9fd4-fda3155d8f32",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000010",
"display_name": "Контакт №11",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/11/256.png"
},
"jid": "d-9a4e9a23-7957-4903-8d59-4b1c1558a9cd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000109",
"display_name": "Контакт №110",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/10/256.png"
},
"jid": "d-5d2a5ffa-0884-402d-bb13-4fe9cfe93679",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000110",
"display_name": "Контакт №111",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/11/256.png"
},
"jid": "d-37679f95-0656-483c-90a7-a0b4e1eeca65",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000111",
"display_name": "Контакт №112",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/12/256.png"
},
"jid": "d-b692a0b4-9830-444b-b914-6f8051ead3d1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000112",
"display_name": "Контакт №113",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/13/256.png"
},
"jid": "d-9ec8e359-f23e-4ffd-aa94-24c2f380053e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000113",
"display_name": "Контакт №114",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/14/256.png"
},
"jid": "d-7dd205f4-b26a-48c7-bc4c-2feea1647ee6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000114",
"display_name": "Контакт №115",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/15/256.png"
},
"jid": "d-8efb3a7b-e983-4f13-9aca-261a0dac7eeb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000115",
"display_name": "Контакт №116",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/16/256.png"
},
"jid": "d-36a70903-be53-470b-bd48-e40f976ef275",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000116",
"display_name": "Контакт №117",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/17/256.png"
},
"jid": "d-b09b5491-0172-46cb-9142-b7bc0f294d3a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000117",
"display_name": "Контакт №118",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/18/256.png"
},
"jid": "d-ed914154-5646-421e-998f-2b6036ee8583",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000118",
"display_name": "Контакт №119",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/19/256.png"
},
"jid": "d-ed18b561-40a4-43aa-9a11-09af147e9fa5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000011",
"display_name": "Контакт №12",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/12/256.png"
},
"jid": "d-15a39235-aeab-4ca5-8485-959db58b66c9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000119",
"display_name": "Контакт №120",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/20/256.png"
},
"jid": "d-287250ec-73e0-47c8-9e86-102d168ffd65",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000120",
"display_name": "Контакт №121",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/21/256.png"
},
"jid": "d-91bd2238-fd1d-4283-9f43-a9ca2e07b2c5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000121",
"display_name": "Контакт №122",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/22/256.png"
},
"jid": "d-ae989a4e-4b6f-4177-ac28-e0d3a1951c59",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000122",
"display_name": "Контакт №123",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/23/256.png"
},
"jid": "d-c6a9be86-091c-468b-8e9a-c7042babe594",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000123",
"display_name": "Контакт №124",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/24/256.png"
},
"jid": "d-efb00ded-2b06-4c8d-8a1c-01ccd5420b54",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000124",
"display_name": "Контакт №125",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/25/256.png"
},
"jid": "d-6a793d16-7b95-47f2-affd-5a163539727e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000125",
"display_name": "Контакт №126",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/26/256.png"
},
"jid": "d-db260b06-9580-4cd0-b4fa-6d85ac491811",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000126",
"display_name": "Контакт №127",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/27/256.png"
},
"jid": "d-79e3fefc-bf9d-40b7-82c5-f2b2310aebc6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000127",
"display_name": "Контакт №128",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/28/256.png"
},
"jid": "d-ce8690e4-7044-4a54-b9a3-65bef8df27ee",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000128",
"display_name": "Контакт №129",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/29/256.png"
},
"jid": "d-f99c0634-0c59-4473-b870-8f4468da68fb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000012",
"display_name": "Контакт №13",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/13/256.png"
},
"jid": "d-c9b48424-3546-41bf-9340-aecd391cd508",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000129",
"display_name": "Контакт №130",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/30/256.png"
},
"jid": "d-9957033d-3d51-48ed-a341-c09955830f4e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000130",
"display_name": "Контакт №131",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/31/256.png"
},
"jid": "d-80f6f2ec-f291-49f6-b502-fafa413ead77",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000131",
"display_name": "Контакт №132",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/32/256.png"
},
"jid": "d-b41ae2b9-5e9f-45f3-ab5a-77e06ccafe40",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000132",
"display_name": "Контакт №133",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/33/256.png"
},
"jid": "d-d79cdda0-093f-43e1-adaf-fbfdb18644b9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000133",
"display_name": "Контакт №134",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/34/256.png"
},
"jid": "d-31753dc1-1b68-4ede-b648-e01d3d0ec099",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000134",
"display_name": "Контакт №135",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/35/256.png"
},
"jid": "d-10805656-e3d2-4e6b-91bb-74554fa41c0d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000135",
"display_name": "Контакт №136",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/36/256.png"
},
"jid": "d-4d1fa7c0-9267-4d54-80ee-d721da284f52",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000136",
"display_name": "Контакт №137",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/37/256.png"
},
"jid": "d-bd943a8d-21f5-4bd3-a73b-d20185d35a41",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000137",
"display_name": "Контакт №138",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/38/256.png"
},
"jid": "d-029188c3-bc5c-4891-b310-145c5c94aef9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000138",
"display_name": "Контакт №139",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/39/256.png"
},
"jid": "d-bb59e634-b88f-4420-8874-9032e135ebf9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000013",
"display_name": "Контакт №14",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/14/256.png"
},
"jid": "d-0c445dcf-5ecb-4076-a35f-5187f7d67db2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000139",
"display_name": "Контакт №140",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/40/256.png"
},
"jid": "d-73e58286-a8e3-4e18-82d8-2b349f757182",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000140",
"display_name": "Контакт №141",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/41/256.png"
},
"jid": "d-ba5cbfa3-dbc6-44d4-a050-739bfacaa2ac",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000141",
"display_name": "Контакт №142",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/42/256.png"
},
"jid": "d-7498e6b5-7dd6-47f9-ac4d-4615e516291c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000142",
"display_name": "Контакт №143",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/43/256.png"
},
"jid": "d-1a48eb42-40bd-44fc-b38c-0cde5cc7e8d2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000143",
"display_name": "Контакт №144",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/44/256.png"
},
"jid": "d-26f1b022-2336-4e4d-ae13-ad86ec2f41e2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000144",
"display_name": "Контакт №145",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/45/256.png"
},
"jid": "d-0cbc0633-f2ec-4572-85a1-b7e0fd466f69",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000145",
"display_name": "Контакт №146",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/46/256.png"
},
"jid": "d-37897215-add1-4c92-bec4-496349ea791b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000146",
"display_name": "Контакт №147",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/47/256.png"
},
"jid": "d-7b1a2b68-7e14-4181-bcd8-38d9a8a043b0",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000147",
"display_name": "Контакт №148",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/48/256.png"
},
"jid": "d-c2692044-52a5-4728-b0e3-b2ab53f7b73b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000148",
"display_name": "Контакт №149",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/49/256.png"
},
"jid": "d-469d7eaa-75d1-41cc-b41e-3d83eb61c067",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000014",
"display_name": "Контакт №15",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/15/256.png"
},
"jid": "d-3379af00-33f2-4f37-85a9-1e1be95d2336",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000149",
"display_name": "Контакт №150",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/50/256.png"
},
"jid": "d-24dda9c8-54f5-48d9-913d-5710d4dfcad2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000150",
"display_name": "Контакт №151",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/51/256.png"
},
"jid": "d-ade6d277-2611-45c8-8e5e-518509cf046d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000151",
"display_name": "Контакт №152",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/52/256.png"
},
"jid": "d-848514b2-9ca9-4d86-a81f-f0d2c74637e5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000152",
"display_name": "Контакт №153",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/53/256.png"
},
"jid": "d-1668d941-1756-41a5-93b0-064b6a08faca",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000153",
"display_name": "Контакт №154",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/54/256.png"
},
"jid": "d-40924f3c-acc5-437c-9547-78b37a0aff8f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000154",
"display_name": "Контакт №155",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/55/256.png"
},
"jid": "d-a32921b3-81c6-4e64-bfbf-51b5eedda2fd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000155",
"display_name": "Контакт №156",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/56/256.png"
},
"jid": "d-969646f5-fd33-4ca8-b8fa-e67ebfc0fb10",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000156",
"display_name": "Контакт №157",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/57/256.png"
},
"jid": "d-1b0cb860-669e-426f-8cf1-c073487257aa",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000157",
"display_name": "Контакт №158",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/58/256.png"
},
"jid": "d-3fffef21-a915-472d-9e73-fda394976954",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000158",
"display_name": "Контакт №159",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/59/256.png"
},
"jid": "d-ccf0b654-982c-478c-8566-3c4315eece27",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000015",
"display_name": "Контакт №16",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/16/256.png"
},
"jid": "d-f401f33b-2740-49d7-9589-35ab4f3a06ef",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000159",
"display_name": "Контакт №160",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/60/256.png"
},
"jid": "d-a16ea1bd-6779-4774-88f5-0f1da0468600",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000160",
"display_name": "Контакт №161",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/61/256.png"
},
"jid": "d-20c83537-8b2d-4e27-9f0c-e0e98e4ac064",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000161",
"display_name": "Контакт №162",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/62/256.png"
},
"jid": "d-ac980ed0-1913-413c-a62c-df8d7df47cce",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000162",
"display_name": "Контакт №163",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/63/256.png"
},
"jid": "d-4efcae5b-9290-4576-b54c-067570bfa31b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000163",
"display_name": "Контакт №164",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/64/256.png"
},
"jid": "d-63778df5-8342-41b8-9cfc-9158538de4a5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000164",
"display_name": "Контакт №165",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/65/256.png"
},
"jid": "d-bbe40e9f-6a0b-441b-a31f-a2afeceffbfb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000165",
"display_name": "Контакт №166",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/66/256.png"
},
"jid": "d-c7939bb0-2125-49f8-91a2-ab04bd428ea2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000166",
"display_name": "Контакт №167",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/67/256.png"
},
"jid": "d-c810c65e-342a-4ec8-a588-d618c49e4b51",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000167",
"display_name": "Контакт №168",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/68/256.png"
},
"jid": "d-b2ecc1a8-b5fc-4081-808f-cdb7c22eb777",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000168",
"display_name": "Контакт №169",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/69/256.png"
},
"jid": "d-d2d77e40-9fff-4796-8326-8b5bff7c7f72",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000016",
"display_name": "Контакт №17",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/17/256.png"
},
"jid": "d-31d50a22-ecf0-4474-ac83-235e1ef587c2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000169",
"display_name": "Контакт №170",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/70/256.png"
},
"jid": "d-c8ae7491-6cb6-430a-a9b2-6586a56ba569",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000170",
"display_name": "Контакт №171",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/71/256.png"
},
"jid": "d-a3e4bad7-4082-4079-82f4-77e210c89382",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000171",
"display_name": "Контакт №172",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/72/256.png"
},
"jid": "d-d9814956-1ff6-41dc-9752-68faf3a376b7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000172",
"display_name": "Контакт №173",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/73/256.png"
},
"jid": "d-65292d18-3e54-47e5-89d6-d514c5df9eaa",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000173",
"display_name": "Контакт №174",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/74/256.png"
},
"jid": "d-3f89d0de-f25e-4d9a-9e6b-41a6120f5aff",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000174",
"display_name": "Контакт №175",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/75/256.png"
},
"jid": "d-c474ee49-33f6-4822-873e-ffe5b804008a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000175",
"display_name": "Контакт №176",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/76/256.png"
},
"jid": "d-381587e3-afb0-45a5-8711-a037479780c9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000176",
"display_name": "Контакт №177",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/77/256.png"
},
"jid": "d-d09df7cc-535a-4f89-97b1-1d8ca2cfe5cf",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000177",
"display_name": "Контакт №178",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/78/256.png"
},
"jid": "d-b65e4289-447a-415f-90e0-c2984f265b17",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000178",
"display_name": "Контакт №179",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/79/256.png"
},
"jid": "d-0368f7b7-f491-4d34-ba61-2c7dfbb97dbf",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000017",
"display_name": "Контакт №18",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/18/256.png"
},
"jid": "d-73f2890d-7e2c-473a-865e-c00ea119f0a3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000179",
"display_name": "Контакт №180",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/80/256.png"
},
"jid": "d-5ec7edc8-1d75-4f2d-8002-5af2b732a915",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000180",
"display_name": "Контакт №181",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/81/256.png"
},
"jid": "d-6b0d4e2c-ff11-4d21-b8d8-c48a429eadc3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000181",
"display_name": "Контакт №182",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/82/256.png"
},
"jid": "d-bdc5f7c2-bb1b-4297-bed9-00f1e4611697",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000182",
"display_name": "Контакт №183",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/83/256.png"
},
"jid": "d-31418458-ad17-4ba0-abc0-b12801cddc78",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000183",
"display_name": "Контакт №184",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/84/256.png"
},
"jid": "d-7d425a60-749a-4110-ab6d-96c1a3973f6e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000184",
"display_name": "Контакт №185",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/85/256.png"
},
"jid": "d-ae0255a8-e314-4a55-a21f-d7e2972e6a02",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000185",
"display_name": "Контакт №186",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/86/256.png"
},
"jid": "d-0725e50b-4614-4067-9139-b48e1a45b0a7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000186",
"display_name": "Контакт №187",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/87/256.png"
},
"jid": "d-87079db1-4c81-4c7c-b460-2735503a9864",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000187",
"display_name": "Контакт №188",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/88/256.png"
},
"jid": "d-6071c15e-678a-46cb-9850-5ea79d6ca429",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000188",
"display_name": "Контакт №189",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/89/256.png"
},
"jid": "d-011c5813-c2ed-4a13-bdd8-7e3dc68be8d4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000018",
"display_name": "Контакт №19",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/19/256.png"
},
"jid": "d-404f212e-1e8c-4a2a-b1c1-df75c2bbce35",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000189",
"display_name": "Контакт №190",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/90/256.png"
},
"jid": "d-617e3040-081a-4443-9cf6-3492c798b0ca",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000190",
"display_name": "Контакт №191",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/91/256.png"
},
"jid": "d-8d916299-c8db-4cc2-8868-ad186d503d99",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000191",
"display_name": "Контакт №192",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/92/256.png"
},
"jid": "d-6f1b43c4-7abb-438e-8a2c-5d47e6122fdb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000192",
"display_name": "Контакт №193",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/93/256.png"
},
"jid": "d-75c57b8a-2fb6-4321-a811-895f457fd7fc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000193",
"display_name": "Контакт №194",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/94/256.png"
},
"jid": "d-b528a5cf-b3b7-4252-b73f-d88c36043369",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000194",
"display_name": "Контакт №195",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/95/256.png"
},
"jid": "d-8d6cff09-5fba-43c3-9b5f-315616895a59",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000195",
"display_name": "Контакт №196",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/96/256.png"
},
"jid": "d-115d83d0-3b74-4941-a245-6fd0c22b5b2d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000196",
"display_name": "Контакт №197",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/97/256.png"
},
"jid": "d-1181f1eb-c143-4861-bdd4-820cc8b97f1d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000197",
"display_name": "Контакт №198",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/98/256.png"
},
"jid": "d-bda3672c-8354-4c93-a6c8-250f8d593624",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000198",
"display_name": "Контакт №199",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/99/256.png"
},
"jid": "d-ee53b54c-e168-4f05-a17e-b94cd2886a02",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000001",
"display_name": "Контакт №2",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%9A%E2%84%96/256.png"
},
"jid": "d-5c9b32bf-ac42-4d2e-85a2-1eb81b04fb98",
"last_activity": "2019-09-18T18:14:09.403935Z",
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000019",
"display_name": "Контакт №20",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/20/256.png"
},
"jid": "d-6c8b3462-4b15-4ff3-ad04-f0d48fa11429",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000199",
"display_name": "Контакт №200",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/00/256.png"
},
"jid": "d-095cef7c-c1a7-4a0d-9634-31ad5fee340e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000200",
"display_name": "Контакт №201",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/01/256.png"
},
"jid": "d-672e6338-6bad-47e1-8562-0fb093f3151b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000201",
"display_name": "Контакт №202",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/02/256.png"
},
"jid": "d-09c95402-e0ff-4160-8f6f-496b8f922f84",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000202",
"display_name": "Контакт №203",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/03/256.png"
},
"jid": "d-12750eea-1b52-413f-897c-63d6012f99b0",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000203",
"display_name": "Контакт №204",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/04/256.png"
},
"jid": "d-26aad3c5-8cc9-402a-a23e-36f81e7bee9c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000204",
"display_name": "Контакт №205",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/05/256.png"
},
"jid": "d-aae0d6e5-719a-4306-ad2a-b998eb71ce9b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000205",
"display_name": "Контакт №206",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/06/256.png"
},
"jid": "d-935ef749-5d27-4e7c-9ffc-c1b8b3e62cdb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000206",
"display_name": "Контакт №207",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/07/256.png"
},
"jid": "d-266bb4ed-00c3-43ab-a2a2-bc2412bc8d54",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000207",
"display_name": "Контакт №208",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/08/256.png"
},
"jid": "d-3655a955-3934-474d-8b78-24b6ff0f2717",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000208",
"display_name": "Контакт №209",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/09/256.png"
},
"jid": "d-6ad30b38-58bf-4ce6-94a0-eb4f58f5c2ef",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000020",
"display_name": "Контакт №21",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/21/256.png"
},
"jid": "d-c8dce1b0-16e3-46c0-a7fb-2ee37d3643b7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000209",
"display_name": "Контакт №210",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/10/256.png"
},
"jid": "d-428b8323-0b2e-4421-9f21-e4e6543ee7c1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000210",
"display_name": "Контакт №211",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/11/256.png"
},
"jid": "d-fc8be418-2f08-429f-8f69-4c5fa227040b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000211",
"display_name": "Контакт №212",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/12/256.png"
},
"jid": "d-85350496-98b4-44af-9895-d524c24cb8d1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000212",
"display_name": "Контакт №213",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/13/256.png"
},
"jid": "d-e29e45d5-fa4b-46e1-82c6-67e035bdb228",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000213",
"display_name": "Контакт №214",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/14/256.png"
},
"jid": "d-bfa5b509-736e-4bf0-88a3-9ad9cc56f4e4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000214",
"display_name": "Контакт №215",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/15/256.png"
},
"jid": "d-ffe069b1-2547-4189-9b3e-0b13efa21d3c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000215",
"display_name": "Контакт №216",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/16/256.png"
},
"jid": "d-329d3aed-5751-43a3-a713-4235985fd8a5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000216",
"display_name": "Контакт №217",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/17/256.png"
},
"jid": "d-e626c3c4-6681-4b1b-abea-46e1089941ec",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000217",
"display_name": "Контакт №218",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/18/256.png"
},
"jid": "d-16e7c2a0-c584-490e-8712-3962af9d6540",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000218",
"display_name": "Контакт №219",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/19/256.png"
},
"jid": "d-94d25c0e-03bf-4028-bf93-b4a27a2e99a7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000021",
"display_name": "Контакт №22",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/22/256.png"
},
"jid": "d-aa379f92-75fe-463c-923b-3564a1251732",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000219",
"display_name": "Контакт №220",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/20/256.png"
},
"jid": "d-709063e7-80a3-4b07-8475-ab79d0853248",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000220",
"display_name": "Контакт №221",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/21/256.png"
},
"jid": "d-9a8c991b-76dc-495e-af10-82a45cd1cf8c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000221",
"display_name": "Контакт №222",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/22/256.png"
},
"jid": "d-b7ec032f-93bb-49cb-958a-76f212ec267a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000222",
"display_name": "Контакт №223",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/23/256.png"
},
"jid": "d-e1a21c0b-5091-4e9a-b0ce-0c28be2d4a80",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000223",
"display_name": "Контакт №224",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/24/256.png"
},
"jid": "d-a08a1305-4ee0-43b3-b84d-919308bb18ae",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000224",
"display_name": "Контакт №225",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/25/256.png"
},
"jid": "d-406a0f5d-41c3-4aa5-b4f9-bd774d92a25c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000225",
"display_name": "Контакт №226",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/26/256.png"
},
"jid": "d-89288801-1772-422f-b363-ecc8bd32be6e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000226",
"display_name": "Контакт №227",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/27/256.png"
},
"jid": "d-dbfa9ffa-aad5-4aaf-8fd1-52263a656f0e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000227",
"display_name": "Контакт №228",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/28/256.png"
},
"jid": "d-7df26efa-8ac2-4dc9-b5b2-ad1b6e3e0dbb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000228",
"display_name": "Контакт №229",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/29/256.png"
},
"jid": "d-511eb75b-11b2-4e44-a28a-71573e9dc35b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000022",
"display_name": "Контакт №23",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/23/256.png"
},
"jid": "d-fd6f2eb7-ca34-4458-94ca-415b3e95bce9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000229",
"display_name": "Контакт №230",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/30/256.png"
},
"jid": "d-c77fa026-03a4-483a-bf7f-64eb0ce6e37b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000230",
"display_name": "Контакт №231",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/31/256.png"
},
"jid": "d-64dcb673-d0c3-4555-9231-debe0fb14827",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000231",
"display_name": "Контакт №232",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/32/256.png"
},
"jid": "d-c296f683-0042-4bc2-a8b8-42d6f8e2c9b2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000232",
"display_name": "Контакт №233",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/33/256.png"
},
"jid": "d-71df198e-67f9-422b-859d-87f587ba5d83",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000233",
"display_name": "Контакт №234",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/34/256.png"
},
"jid": "d-ce914701-9c10-4f39-aa2b-76e92e8cd0f9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000234",
"display_name": "Контакт №235",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/35/256.png"
},
"jid": "d-7195d3de-c5fb-4084-adeb-3013e1f324fc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000235",
"display_name": "Контакт №236",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/36/256.png"
},
"jid": "d-60fbda77-6ce1-41f4-926a-fefa10f43778",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000236",
"display_name": "Контакт №237",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/37/256.png"
},
"jid": "d-43f00549-6a01-4b4a-9228-f557cf46efc9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000237",
"display_name": "Контакт №238",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/38/256.png"
},
"jid": "d-894f5d07-fd72-46f5-a170-ccc3f72c9cde",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000238",
"display_name": "Контакт №239",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/39/256.png"
},
"jid": "d-62096aeb-4eca-4afa-aecf-d50e0c1f5192",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000023",
"display_name": "Контакт №24",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/24/256.png"
},
"jid": "d-9e54a8f3-6d76-4c25-83d5-35b4be4acce3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000239",
"display_name": "Контакт №240",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/40/256.png"
},
"jid": "d-dea30887-dcc3-4491-9f43-e87eb59a3cc4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000240",
"display_name": "Контакт №241",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/41/256.png"
},
"jid": "d-0d30007b-6913-44f1-a554-25aecfdee5c0",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000241",
"display_name": "Контакт №242",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/42/256.png"
},
"jid": "d-d1a9e96f-65f7-4a1f-af3a-76303f87214a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000242",
"display_name": "Контакт №243",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/43/256.png"
},
"jid": "d-9f0dc2f4-1a6c-4746-ad5b-1c01fe00f186",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000243",
"display_name": "Контакт №244",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/44/256.png"
},
"jid": "d-54a405df-d8ec-4cc4-801e-324079972ff1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000244",
"display_name": "Контакт №245",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/45/256.png"
},
"jid": "d-0625439f-2a9d-4008-b14e-fbfb69b637f3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000245",
"display_name": "Контакт №246",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/46/256.png"
},
"jid": "d-e834b072-92bb-4025-b9ce-a82a5dfde4ad",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000246",
"display_name": "Контакт №247",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/47/256.png"
},
"jid": "d-d81652a2-0b89-4c34-9247-82b38bf51b8d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000247",
"display_name": "Контакт №248",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/48/256.png"
},
"jid": "d-7afd8427-72b8-47c8-94c5-c89b89595c5f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000248",
"display_name": "Контакт №249",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/49/256.png"
},
"jid": "d-e54ec05e-13e2-4eb1-a93c-58240f9deb8f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000024",
"display_name": "Контакт №25",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/25/256.png"
},
"jid": "d-a09e789d-4eaa-4a0b-bff8-16eb1182b202",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000249",
"display_name": "Контакт №250",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/50/256.png"
},
"jid": "d-0a862057-599e-4d68-8c6f-fb6b78083288",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000250",
"display_name": "Контакт №251",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/51/256.png"
},
"jid": "d-1e7dbf45-b91c-4b37-be9b-541696d719cc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000251",
"display_name": "Контакт №252",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/52/256.png"
},
"jid": "d-cbd99201-729b-41db-998a-9f8a430cf99c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000252",
"display_name": "Контакт №253",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/53/256.png"
},
"jid": "d-d31911b1-07c4-47a1-8a38-3d88922ecfb6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000253",
"display_name": "Контакт №254",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/54/256.png"
},
"jid": "d-0538970e-f4bd-4c6d-b046-8361621e9d49",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000254",
"display_name": "Контакт №255",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/55/256.png"
},
"jid": "d-af82a3ff-d057-450e-8a53-e41c0a968bfe",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000255",
"display_name": "Контакт №256",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/56/256.png"
},
"jid": "d-694a8c7e-f9f1-419c-ac9c-dc61323de742",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000256",
"display_name": "Контакт №257",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/57/256.png"
},
"jid": "d-2051efdc-d33c-4d93-b4c9-964dedf4b6e4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000257",
"display_name": "Контакт №258",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/58/256.png"
},
"jid": "d-d7b449f0-57ee-48ad-8d58-76a310534542",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000258",
"display_name": "Контакт №259",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/59/256.png"
},
"jid": "d-de9fee47-7dee-4aa5-bee1-cd1d3ee016f0",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000025",
"display_name": "Контакт №26",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/26/256.png"
},
"jid": "d-39f3069b-32d5-49d3-90f1-ac506797cdb9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000259",
"display_name": "Контакт №260",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/60/256.png"
},
"jid": "d-12895120-4b96-4a97-b571-daaeae5c0458",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000260",
"display_name": "Контакт №261",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/61/256.png"
},
"jid": "d-033f57c8-b4d3-423f-8b4b-8965905546c8",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000261",
"display_name": "Контакт №262",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/62/256.png"
},
"jid": "d-5694fb21-7c7a-4dd1-b6e5-810da8dd3f6e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000262",
"display_name": "Контакт №263",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/63/256.png"
},
"jid": "d-d2e79b15-ae99-4a96-9297-34cac6804117",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000263",
"display_name": "Контакт №264",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/64/256.png"
},
"jid": "d-7decaedb-d97f-430f-a3a3-bbb3732f0b18",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000264",
"display_name": "Контакт №265",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/65/256.png"
},
"jid": "d-7694d797-2959-4e51-bc67-d95a2e89e100",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000265",
"display_name": "Контакт №266",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/66/256.png"
},
"jid": "d-957ab5af-97b3-4b12-8e5c-8b6ddfe00fa7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000266",
"display_name": "Контакт №267",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/67/256.png"
},
"jid": "d-e2749bbf-72cc-4296-b7ba-5693c6358c05",
"last_activity": "2019-09-22T23:00:26.602783Z",
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000267",
"display_name": "Контакт №268",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/68/256.png"
},
"jid": "d-085dea6c-b277-4791-a0d0-cbbc8d50e208",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000268",
"display_name": "Контакт №269",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/69/256.png"
},
"jid": "d-03605897-506e-40c9-87f7-db84526f61bc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000026",
"display_name": "Контакт №27",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/27/256.png"
},
"jid": "d-1fbb879d-266e-4787-bbcd-43bd55817f8c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000269",
"display_name": "Контакт №270",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/70/256.png"
},
"jid": "d-11bac61c-e91e-45b9-9f09-78eb167d6c6e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000270",
"display_name": "Контакт №271",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/71/256.png"
},
"jid": "d-de32564a-b4a9-4393-8a58-9ede30bcc256",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000271",
"display_name": "Контакт №272",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/72/256.png"
},
"jid": "d-5b8413b8-c18f-453c-ba34-e5e2c031f2a9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000272",
"display_name": "Контакт №273",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/73/256.png"
},
"jid": "d-5700101e-fe08-4280-a8b0-bd6eb4c014a6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000273",
"display_name": "Контакт №274",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/74/256.png"
},
"jid": "d-fbd391bd-450c-4536-a9c1-6315f3c131b5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000274",
"display_name": "Контакт №275",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/75/256.png"
},
"jid": "d-de5e5e19-e895-43fc-8d90-297eb185a467",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000275",
"display_name": "Контакт №276",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/76/256.png"
},
"jid": "d-4d5b71e0-a692-4523-bad5-7c7da02a770c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000276",
"display_name": "Контакт №277",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/77/256.png"
},
"jid": "d-a50b4d22-55ea-4a47-bf93-9c8245d88d70",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000277",
"display_name": "Контакт №278",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/78/256.png"
},
"jid": "d-a9aaf587-cfc9-4f4c-aaa1-daaa69813c5a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000278",
"display_name": "Контакт №279",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/79/256.png"
},
"jid": "d-6b3dbc20-3a72-4acf-b90d-3e606bbefcdf",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000027",
"display_name": "Контакт №28",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/28/256.png"
},
"jid": "d-98f9928c-97c5-4319-ad0d-5e3ca5db0b44",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000279",
"display_name": "Контакт №280",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/80/256.png"
},
"jid": "d-0823c980-28a3-4c36-9e84-e0ecf7072cb4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000280",
"display_name": "Контакт №281",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/81/256.png"
},
"jid": "d-da8c61d0-cac5-4011-b261-5b27069af1c6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000281",
"display_name": "Контакт №282",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/82/256.png"
},
"jid": "d-8cf89fac-1fed-418c-920f-e293771d0bfd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000282",
"display_name": "Контакт №283",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/83/256.png"
},
"jid": "d-239d8737-9f75-4b1e-aaa3-6f2cbcecfe28",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000283",
"display_name": "Контакт №284",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/84/256.png"
},
"jid": "d-3d4b94ae-e77d-40de-bb3d-b5df47ddac44",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000284",
"display_name": "Контакт №285",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/85/256.png"
},
"jid": "d-05e4779b-1256-45de-a32c-3bedf00c822d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000285",
"display_name": "Контакт №286",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/86/256.png"
},
"jid": "d-61548f8e-7ced-4747-b17d-86901f75282e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000286",
"display_name": "Контакт №287",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/87/256.png"
},
"jid": "d-59e03ba7-ea58-40ac-8428-0359f94c9ccd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000287",
"display_name": "Контакт №288",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/88/256.png"
},
"jid": "d-ea9aea72-b31d-4ea8-a462-e161e1bee0e5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000288",
"display_name": "Контакт №289",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/89/256.png"
},
"jid": "d-b79412b5-119d-4819-9516-886f0b5a5037",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000028",
"display_name": "Контакт №29",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/29/256.png"
},
"jid": "d-f88c5e1e-7376-44f3-9776-dcc7bba42bc3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000289",
"display_name": "Контакт №290",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/90/256.png"
},
"jid": "d-cd9f1371-1bd8-4649-bb81-140b8ff44913",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000290",
"display_name": "Контакт №291",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/91/256.png"
},
"jid": "d-8f06a2df-0cc8-4a1a-ba89-e4c752b63504",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000291",
"display_name": "Контакт №292",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/92/256.png"
},
"jid": "d-43cf2b59-5c08-4510-a627-fd16cfd47390",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000292",
"display_name": "Контакт №293",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/93/256.png"
},
"jid": "d-577a1730-3b7e-46f3-83ce-2561873759cb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000293",
"display_name": "Контакт №294",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/94/256.png"
},
"jid": "d-409abc83-5a0e-46d2-aa6b-16c83a6af13b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000294",
"display_name": "Контакт №295",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/95/256.png"
},
"jid": "d-fa205cae-79d2-4317-aba7-20fcbceb19a3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000295",
"display_name": "Контакт №296",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/96/256.png"
},
"jid": "d-3b09b1d5-773c-4019-9e41-eff1c7246cb2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000296",
"display_name": "Контакт №297",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/97/256.png"
},
"jid": "d-7c2f8918-542c-478e-826a-41caae1f44c2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000297",
"display_name": "Контакт №298",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/98/256.png"
},
"jid": "d-637c626a-c8fb-4598-9a9c-d9fff8de45f4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000298",
"display_name": "Контакт №299",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/99/256.png"
},
"jid": "d-abc5b8b1-9aca-43fb-ad09-ee2cb0c1eeca",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000002",
"display_name": "Контакт №3",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/%D0%9A%E2%84%96/256.png"
},
"jid": "d-f3358016-2257-4568-85d3-d34618fb19af",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000029",
"display_name": "Контакт №30",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/30/256.png"
},
"jid": "d-d133cf20-a27a-4aaf-89fc-08ed54909ed4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000299",
"display_name": "Контакт №300",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/00/256.png"
},
"jid": "d-fbe961e4-0808-497b-a358-23e857ed7517",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000300",
"display_name": "Контакт №301",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/01/256.png"
},
"jid": "d-4610b826-d6dd-456e-a852-50e4417f4130",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000301",
"display_name": "Контакт №302",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/02/256.png"
},
"jid": "d-08ba13b9-903d-4733-836a-c1f95157dbd9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000302",
"display_name": "Контакт №303",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/03/256.png"
},
"jid": "d-c8982182-84b9-422c-b620-44b3c7a09f31",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000303",
"display_name": "Контакт №304",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/04/256.png"
},
"jid": "d-a2ef9558-e965-450c-8d96-d51d807ef808",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000304",
"display_name": "Контакт №305",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/05/256.png"
},
"jid": "d-54a646b6-ea40-4784-9a43-67c33ac87ef1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000305",
"display_name": "Контакт №306",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/06/256.png"
},
"jid": "d-e7415145-dbb7-4b0d-a986-a8831891d3f2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000306",
"display_name": "Контакт №307",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/07/256.png"
},
"jid": "d-a2115b28-f646-4042-b91c-50acd5db4820",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000307",
"display_name": "Контакт №308",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/08/256.png"
},
"jid": "d-f04341ac-a870-4eda-9ea1-7858a95460ec",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000308",
"display_name": "Контакт №309",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/09/256.png"
},
"jid": "d-8e8b100b-7c65-4c64-9f43-ebd2be0a990a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000030",
"display_name": "Контакт №31",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/31/256.png"
},
"jid": "d-b1789160-dcdc-4631-a570-14acf2941802",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000309",
"display_name": "Контакт №310",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/10/256.png"
},
"jid": "d-d88a0a5c-953a-4fa6-8087-170e478bed43",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000310",
"display_name": "Контакт №311",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/11/256.png"
},
"jid": "d-3797e44a-a89d-4e61-920d-40b70f726c00",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000311",
"display_name": "Контакт №312",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/12/256.png"
},
"jid": "d-6bd21e17-6211-47af-939f-26d6a23edf15",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000312",
"display_name": "Контакт №313",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/13/256.png"
},
"jid": "d-01050f10-b7ef-4dca-ac30-794d3c48e423",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000313",
"display_name": "Контакт №314",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/14/256.png"
},
"jid": "d-3988f6e3-e839-4a29-8111-8d9cb489ff32",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000314",
"display_name": "Контакт №315",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/15/256.png"
},
"jid": "d-bd72c3d4-60ce-4e88-b0d2-47987aec2ab7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000315",
"display_name": "Контакт №316",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/16/256.png"
},
"jid": "d-0485ed1c-7398-41e4-b67b-ddffab9b1ac3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000316",
"display_name": "Контакт №317",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/17/256.png"
},
"jid": "d-bee6ea74-de84-4a59-834a-358f1c7d135d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000317",
"display_name": "Контакт №318",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/18/256.png"
},
"jid": "d-00b902c0-e21d-431b-8cf5-76c10308939d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000318",
"display_name": "Контакт №319",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/19/256.png"
},
"jid": "d-b1035830-6e6a-4a6c-900e-0b094a197665",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000031",
"display_name": "Контакт №32",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/32/256.png"
},
"jid": "d-f9524d8a-9934-4d62-a748-2045311ce2eb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000319",
"display_name": "Контакт №320",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/20/256.png"
},
"jid": "d-ad2347df-f677-499c-b6f4-3b262d7f4b8b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000320",
"display_name": "Контакт №321",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/21/256.png"
},
"jid": "d-161336c7-58e8-49cb-9b39-583b62ff32b4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000321",
"display_name": "Контакт №322",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/22/256.png"
},
"jid": "d-c3dfe478-c47a-4f20-8e47-1915e48bceca",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000322",
"display_name": "Контакт №323",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/23/256.png"
},
"jid": "d-bb98c924-d225-4b0d-8dba-d352171cd913",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000323",
"display_name": "Контакт №324",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/24/256.png"
},
"jid": "d-7d4c91dc-4340-4112-aaab-29732fbcdf94",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000324",
"display_name": "Контакт №325",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/25/256.png"
},
"jid": "d-4b1f4a3e-4c35-4fbd-bec0-7cd73ded7a6e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000325",
"display_name": "Контакт №326",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/26/256.png"
},
"jid": "d-5dcdf750-b4c9-4906-9305-d0d3b574e7e5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000326",
"display_name": "Контакт №327",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/27/256.png"
},
"jid": "d-0d2c7df3-4283-4b9a-80a9-d91112e5d341",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000327",
"display_name": "Контакт №328",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/28/256.png"
},
"jid": "d-b9f4e0de-00ff-49ca-ac96-fe96b2c6fe0f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000328",
"display_name": "Контакт №329",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/29/256.png"
},
"jid": "d-0aa82f9a-cd2b-46f7-85cd-110fc13e7252",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000032",
"display_name": "Контакт №33",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/33/256.png"
},
"jid": "d-8142afc2-6d78-4934-bd81-4efb7b8ba707",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000329",
"display_name": "Контакт №330",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/30/256.png"
},
"jid": "d-a0cd354d-1dae-4d01-94c1-e1f6612f5eb8",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000330",
"display_name": "Контакт №331",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/31/256.png"
},
"jid": "d-fa0b4b6f-c3cd-416d-a897-6ed5b5fcf18f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000331",
"display_name": "Контакт №332",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/32/256.png"
},
"jid": "d-a4a09995-e28a-4940-a690-9aaa8b4fe60c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000332",
"display_name": "Контакт №333",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/33/256.png"
},
"jid": "d-60f197c9-4ae9-47cf-80a6-9a7b33faa392",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000333",
"display_name": "Контакт №334",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/34/256.png"
},
"jid": "d-1eef5936-1273-40b4-a342-b58706ffb68b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000334",
"display_name": "Контакт №335",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/35/256.png"
},
"jid": "d-b8aa5d93-b500-4966-912f-ed417a50a602",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000335",
"display_name": "Контакт №336",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/36/256.png"
},
"jid": "d-62a174c2-85ae-4eec-ae46-b0a4c6d8f214",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000336",
"display_name": "Контакт №337",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/37/256.png"
},
"jid": "d-75d698ea-3ec5-4950-bd3a-ffed06d4ca1b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000337",
"display_name": "Контакт №338",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/38/256.png"
},
"jid": "d-3849c2b2-340d-40b5-9d64-f24dcdd2e2f1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000338",
"display_name": "Контакт №339",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/39/256.png"
},
"jid": "d-3963a6f9-c104-4129-8ed9-7a04de1635a4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000033",
"display_name": "Контакт №34",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/34/256.png"
},
"jid": "d-e11860e2-cd79-48b6-89ff-26b8e9b60a1b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000339",
"display_name": "Контакт №340",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/40/256.png"
},
"jid": "d-4cc922aa-8ee3-4d5f-8d3c-d76408f2633c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000340",
"display_name": "Контакт №341",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/41/256.png"
},
"jid": "d-2daf511c-616f-451c-a2bf-995938591a7c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000341",
"display_name": "Контакт №342",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/42/256.png"
},
"jid": "d-ca6c440c-f7b8-4f7c-81bc-a91a9e4b75fd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000342",
"display_name": "Контакт №343",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/43/256.png"
},
"jid": "d-6af65de4-ae72-4280-8e43-7bbc8f0e0a91",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000343",
"display_name": "Контакт №344",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/44/256.png"
},
"jid": "d-3dba227c-d3b6-4aae-adb8-7affe9c72ea5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000344",
"display_name": "Контакт №345",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/45/256.png"
},
"jid": "d-5d898a42-6dde-42d3-aad8-f1d59de5d68f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000345",
"display_name": "Контакт №346",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/46/256.png"
},
"jid": "d-94239212-2e22-4a69-a919-01733ab8129c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000346",
"display_name": "Контакт №347",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/47/256.png"
},
"jid": "d-cb77a229-e32e-470a-a95a-fd8fedd59722",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000347",
"display_name": "Контакт №348",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/48/256.png"
},
"jid": "d-b12704e9-231a-4038-a385-6d376e46092b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000348",
"display_name": "Контакт №349",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/49/256.png"
},
"jid": "d-160a1029-a321-44ee-914f-768ef104a8b4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000034",
"display_name": "Контакт №35",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/35/256.png"
},
"jid": "d-e29836b0-1681-4a57-9e86-4611b812cff3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000349",
"display_name": "Контакт №350",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/50/256.png"
},
"jid": "d-369b5d5f-69ec-4471-af71-b7eae781030d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000350",
"display_name": "Контакт №351",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/51/256.png"
},
"jid": "d-d7a9a1c5-1769-4d55-9824-204ac601e05e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000351",
"display_name": "Контакт №352",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/52/256.png"
},
"jid": "d-b2d4330e-fa1c-40e3-af3d-4092834c1667",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000352",
"display_name": "Контакт №353",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/53/256.png"
},
"jid": "d-4be63395-fca2-41e4-9a84-e87b4da37ca5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000353",
"display_name": "Контакт №354",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/54/256.png"
},
"jid": "d-93c7bd97-5792-489c-845a-e3120460d61d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000354",
"display_name": "Контакт №355",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/55/256.png"
},
"jid": "d-e974dcff-1d0b-4b63-88e9-aef9996bf149",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000355",
"display_name": "Контакт №356",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/56/256.png"
},
"jid": "d-f9fa876d-eb32-4da3-b9ad-2580f88979e2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000356",
"display_name": "Контакт №357",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/57/256.png"
},
"jid": "d-ee465741-a927-4021-afb2-c59c886756cc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000357",
"display_name": "Контакт №358",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/58/256.png"
},
"jid": "d-abfd366d-a980-4621-bade-9f5964561ed5",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000358",
"display_name": "Контакт №359",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/59/256.png"
},
"jid": "d-c8757039-1d92-4f24-9ece-1a410097a383",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000035",
"display_name": "Контакт №36",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/36/256.png"
},
"jid": "d-41a6243b-d608-428e-b877-f12344980838",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000359",
"display_name": "Контакт №360",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/60/256.png"
},
"jid": "d-f6e62284-9e18-4e19-8caf-03817c44a757",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000360",
"display_name": "Контакт №361",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/61/256.png"
},
"jid": "d-6ea80544-3ed0-4cd4-b9b6-31a91fcfd46a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000361",
"display_name": "Контакт №362",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/62/256.png"
},
"jid": "d-e6ec8be3-6703-44af-970b-094bd81cb2af",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000362",
"display_name": "Контакт №363",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/63/256.png"
},
"jid": "d-aa5e1d7a-8e35-40e5-af17-2f7a87861f9b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000363",
"display_name": "Контакт №364",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/64/256.png"
},
"jid": "d-22973a08-533d-4a70-b9e4-10e458320cde",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000364",
"display_name": "Контакт №365",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/65/256.png"
},
"jid": "d-986cfc73-d687-4282-a918-0dfaecab94af",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000365",
"display_name": "Контакт №366",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/66/256.png"
},
"jid": "d-787d0c15-1bae-42b3-8d48-c7899985d738",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000366",
"display_name": "Контакт №367",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/67/256.png"
},
"jid": "d-00261105-889a-4c4e-9c66-2626a0e62cbd",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000367",
"display_name": "Контакт №368",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/68/256.png"
},
"jid": "d-bedd7616-1d88-4cd7-8119-734e4f69885e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000368",
"display_name": "Контакт №369",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/69/256.png"
},
"jid": "d-4d77abe9-ebd2-43b4-9f2c-f1d9a9f572c9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000036",
"display_name": "Контакт №37",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/37/256.png"
},
"jid": "d-d226d776-4392-43c6-95dd-60597fa0f062",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000369",
"display_name": "Контакт №370",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/70/256.png"
},
"jid": "d-21e88ab9-3552-4662-b8c5-4b90b9e19426",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000370",
"display_name": "Контакт №371",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/71/256.png"
},
"jid": "d-d36ea329-9414-4d03-984d-a404156c1411",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000371",
"display_name": "Контакт №372",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/72/256.png"
},
"jid": "d-aa99025f-6f74-44e5-847e-6cee487f9e1f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000372",
"display_name": "Контакт №373",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/73/256.png"
},
"jid": "d-6df70265-928f-4ca3-96e1-ed61cfa40cf1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000373",
"display_name": "Контакт №374",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/74/256.png"
},
"jid": "d-04c3458d-b1c7-4e39-8d85-965fec16ad46",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000374",
"display_name": "Контакт №375",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/75/256.png"
},
"jid": "d-8f6d1caa-2ac8-4e86-978b-f50113617ee9",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000375",
"display_name": "Контакт №376",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/76/256.png"
},
"jid": "d-6b23f2eb-9370-4f8d-a023-c7bdcfe1cf31",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000376",
"display_name": "Контакт №377",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/77/256.png"
},
"jid": "d-3dd8bbf9-b55e-4850-9a82-aae6bd182152",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000377",
"display_name": "Контакт №378",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/78/256.png"
},
"jid": "d-2a3720c5-557c-471a-9471-39aabf3abe4a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000378",
"display_name": "Контакт №379",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/79/256.png"
},
"jid": "d-0ae013bf-55e8-4859-b086-d59eee780cf2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000037",
"display_name": "Контакт №38",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/38/256.png"
},
"jid": "d-6c2ee5cd-ef10-42fb-966e-610c00918189",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000379",
"display_name": "Контакт №380",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/80/256.png"
},
"jid": "d-0f9a3863-a931-4724-90e9-567784a22eec",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000380",
"display_name": "Контакт №381",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/81/256.png"
},
"jid": "d-a6669248-f57c-450d-b80b-301fcd106f5f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000381",
"display_name": "Контакт №382",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/82/256.png"
},
"jid": "d-cfc26a73-2291-4450-af1b-a8299794c18a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000382",
"display_name": "Контакт №383",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/83/256.png"
},
"jid": "d-7fabfb3f-6a40-45ff-a97a-bc81d7efb16b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000383",
"display_name": "Контакт №384",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/84/256.png"
},
"jid": "d-4f6d0583-d0b6-48bf-944f-ef674c144a08",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000384",
"display_name": "Контакт №385",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/85/256.png"
},
"jid": "d-67387273-b755-49c4-837c-97a806d587ae",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000385",
"display_name": "Контакт №386",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/86/256.png"
},
"jid": "d-45729723-9ec1-4cd0-8bea-b7076c554e99",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000386",
"display_name": "Контакт №387",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/87/256.png"
},
"jid": "d-bec390d2-0c9b-41da-b8e4-68c5d3e44f34",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000387",
"display_name": "Контакт №388",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/88/256.png"
},
"jid": "d-c26923de-b037-4422-9b2d-6787f471c5b7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000388",
"display_name": "Контакт №389",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/89/256.png"
},
"jid": "d-19e26ead-ec01-489f-9d5d-7172f1fab4fe",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000038",
"display_name": "Контакт №39",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/39/256.png"
},
"jid": "d-d28389c3-27da-4022-9e15-54eee590d356",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000389",
"display_name": "Контакт №390",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/90/256.png"
},
"jid": "d-b0e892b0-1dcd-4f0c-9ae8-4d78f09991fc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000390",
"display_name": "Контакт №391",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/91/256.png"
},
"jid": "d-2888d4cc-5346-4e6d-a4a2-e9952a1dd379",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000391",
"display_name": "Контакт №392",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/92/256.png"
},
"jid": "d-c8d78f72-bc77-4031-9f72-e2c2ebe52847",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000392",
"display_name": "Контакт №393",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/93/256.png"
},
"jid": "d-2f162731-5d3a-49ed-8c89-465666decf13",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000393",
"display_name": "Контакт №394",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/94/256.png"
},
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"alt_send": false,
"can_add_to_group": true,
"can_create_task": true,
"can_delete": true,
"changeable_fields": [
"add_to_team_rights",
"alt_send",
"contact_email",
"contact_mshort_view",
"contact_phone",
"contact_short_view",
"contact_show_archived",
"debug_show_activity",
"default_lang",
"family_name",
"given_name",
"group_mshort_view",
"group_notifications_enabled",
"group_short_view",
"icons",
"phone",
"role",
"section",
"sections",
"status",
"task_mshort_view",
"task_notifications_enabled",
"task_short_view",
"unread_first"
],
"contact_email": "",
"contact_mshort_view": false,
"contact_phone": "+75550000394",
"contact_short_view": false,
"contact_show_archived": false,
"debug_show_activity": false,
"default_lang": null,
"display_name": "Контакт №395",
"family_name": "№395",
"given_name": "Контакт",
"group_mshort_view": false,
"group_notifications_enabled": true,
"group_short_view": false,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/95/256.png"
},
"jid": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"last_activity": null,
"role": "",
"sections": [],
"status": "admin",
"task_mshort_view": false,
"task_notifications_enabled": true,
"task_short_view": false,
"unread_first": false
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000395",
"display_name": "Контакт №396",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/96/256.png"
},
"jid": "d-6b86d87d-a4a8-4931-b7c3-aa88f0c086af",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000396",
"display_name": "Контакт №397",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/97/256.png"
},
"jid": "d-f14d5eda-af18-444d-a5f8-99369aad5327",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000397",
"display_name": "Контакт №398",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/98/256.png"
},
"jid": "d-eaa2d15f-1814-462a-84ef-3297b35c4a26",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000398",
"display_name": "Контакт №399",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/99/256.png"
},
"jid": "d-00dd47be-13c3-449b-b07c-668680d5de58",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000003",
"display_name": "Контакт №4",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/%D0%9A%E2%84%96/256.png"
},
"jid": "d-9e190661-7095-4a5c-8ec3-76c0bd173e56",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000039",
"display_name": "Контакт №40",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/40/256.png"
},
"jid": "d-d3c4d312-1b82-48f8-b87a-b8db5b5c77d0",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000399",
"display_name": "Контакт №400",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/00/256.png"
},
"jid": "d-b244cdb4-ac57-412c-8582-d4f4c1602d97",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000400",
"display_name": "Контакт №401",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/01/256.png"
},
"jid": "d-7edc1d06-0893-48ea-b8ce-26c40aafe64c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000401",
"display_name": "Контакт №402",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/02/256.png"
},
"jid": "d-b12f55f3-9250-46bc-b55b-38e326a1758f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000402",
"display_name": "Контакт №403",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/03/256.png"
},
"jid": "d-5293a29f-f975-4956-8c9b-6c848f3e7515",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000403",
"display_name": "Контакт №404",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/04/256.png"
},
"jid": "d-19ab8579-b584-4c3f-828f-191dcbd19688",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000404",
"display_name": "Контакт №405",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/05/256.png"
},
"jid": "d-8a53e44c-4638-429e-bb7e-a1107af84ea3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000405",
"display_name": "Контакт №406",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/06/256.png"
},
"jid": "d-8e8db5eb-5fe0-40bf-91ba-fdf8f0035b50",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000406",
"display_name": "Контакт №407",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/07/256.png"
},
"jid": "d-f9e1dc4f-092b-44e2-be9a-95fdc6e6254f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000407",
"display_name": "Контакт №408",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/08/256.png"
},
"jid": "d-da65156b-9eac-41b0-b288-8f8085ad3157",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000408",
"display_name": "Контакт №409",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/09/256.png"
},
"jid": "d-21ed08a6-14cc-482e-a135-fe618758be3d",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000040",
"display_name": "Контакт №41",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/41/256.png"
},
"jid": "d-6f0f4d7b-1a59-4733-96af-9eb3a33973cb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000409",
"display_name": "Контакт №410",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/10/256.png"
},
"jid": "d-e561dbb1-baeb-4a3b-b7dc-1b307e00b8f1",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000410",
"display_name": "Контакт №411",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/11/256.png"
},
"jid": "d-6f226c38-1627-4e33-9f47-91e9b3298fcc",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000411",
"display_name": "Контакт №412",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/12/256.png"
},
"jid": "d-7dd782a7-e802-46b0-a549-8560a8094566",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000412",
"display_name": "Контакт №413",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/13/256.png"
},
"jid": "d-794d4314-83ca-4ef6-905f-b7788d72d817",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000413",
"display_name": "Контакт №414",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/14/256.png"
},
"jid": "d-b69a9bd2-7a97-4520-b8a1-96a25cd5b65c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000414",
"display_name": "Контакт №415",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/15/256.png"
},
"jid": "d-00fe910a-ba8f-4c33-88ae-17232ef4a721",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000415",
"display_name": "Контакт №416",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/16/256.png"
},
"jid": "d-e9af387b-d686-44f2-8022-4cf770b0f51e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000416",
"display_name": "Контакт №417",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/17/256.png"
},
"jid": "d-c7e4ceb1-efce-45ef-ade9-3b9bf4547b26",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000417",
"display_name": "Контакт №418",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/18/256.png"
},
"jid": "d-826d54f6-c265-4a50-9384-63853d80b144",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000418",
"display_name": "Контакт №419",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/19/256.png"
},
"jid": "d-64979b07-83a2-4590-8525-30cc86c21e32",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000041",
"display_name": "Контакт №42",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/42/256.png"
},
"jid": "d-3a3681f2-c594-4a37-be02-9232685aecac",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000419",
"display_name": "Контакт №420",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/20/256.png"
},
"jid": "d-b067d36e-124a-437f-af9c-b937124e5339",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000420",
"display_name": "Контакт №421",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/21/256.png"
},
"jid": "d-8ddad85c-f605-45e7-acc7-1d7c8759ddc4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000421",
"display_name": "Контакт №422",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/22/256.png"
},
"jid": "d-c274d33e-ef6d-4dcb-aefb-ef1e7b280a69",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000422",
"display_name": "Контакт №423",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/23/256.png"
},
"jid": "d-72729ad6-ade2-417a-aebf-c98e48cce407",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000423",
"display_name": "Контакт №424",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/24/256.png"
},
"jid": "d-0df4438b-45f6-492a-86fb-df0824138b90",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000424",
"display_name": "Контакт №425",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/25/256.png"
},
"jid": "d-3ec80244-018d-496d-9f0d-953fd93fbd26",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000425",
"display_name": "Контакт №426",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/26/256.png"
},
"jid": "d-3d8968d6-4f58-4ee3-b0a2-1ae7ea7f5d1f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000426",
"display_name": "Контакт №427",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/27/256.png"
},
"jid": "d-48b55e3e-8b36-44a7-98ef-f15d15c1af10",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000042",
"display_name": "Контакт №43",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/43/256.png"
},
"jid": "d-bd78411a-62f0-4f13-878f-9e57f17fb71b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000043",
"display_name": "Контакт №44",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/44/256.png"
},
"jid": "d-1d5794b7-5e86-4b52-918f-aa737abd0013",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000044",
"display_name": "Контакт №45",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/45/256.png"
},
"jid": "d-599f5c6c-c265-4d7a-83d3-eea1172b8f4b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000045",
"display_name": "Контакт №46",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/46/256.png"
},
"jid": "d-cf1262cf-e3ba-498a-b51c-22019e87e1e3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000046",
"display_name": "Контакт №47",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/47/256.png"
},
"jid": "d-175b2661-3f8e-4a27-afc7-1f2e00848d28",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000047",
"display_name": "Контакт №48",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/48/256.png"
},
"jid": "d-04248eba-316d-4553-8a9d-b681b2f6504c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000048",
"display_name": "Контакт №49",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/49/256.png"
},
"jid": "d-9a6a0991-ac2d-4a43-8824-13aef231f367",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000004",
"display_name": "Контакт №5",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/%D0%9A%E2%84%96/256.png"
},
"jid": "d-4d6adfca-cacc-4cf7-951a-e3bce313d752",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000049",
"display_name": "Контакт №50",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/50/256.png"
},
"jid": "d-ca1eab34-c39c-4e84-ac24-6f109cda0ba7",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000050",
"display_name": "Контакт №51",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/51/256.png"
},
"jid": "d-546436e2-c6e6-4815-b8f9-7d3fef3cbff2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000051",
"display_name": "Контакт №52",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/52/256.png"
},
"jid": "d-60aace84-cd87-48a1-99fd-dc7e203a62e6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000052",
"display_name": "Контакт №53",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/53/256.png"
},
"jid": "d-555f8446-419f-40f1-9ab3-6f436f2667a4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000053",
"display_name": "Контакт №54",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/54/256.png"
},
"jid": "d-05500549-4017-4f4c-8872-030e77b5f6b8",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000054",
"display_name": "Контакт №55",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/55/256.png"
},
"jid": "d-03dc39ee-214d-44eb-91d3-396c23e2da54",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000055",
"display_name": "Контакт №56",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/56/256.png"
},
"jid": "d-06d4c223-3489-473a-828c-609084a52185",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000056",
"display_name": "Контакт №57",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/57/256.png"
},
"jid": "d-049286d3-42e2-426b-bb55-3eafaf357994",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000057",
"display_name": "Контакт №58",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/58/256.png"
},
"jid": "d-233a11c2-3e77-42d9-9deb-3fae6cdf7d17",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000058",
"display_name": "Контакт №59",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/59/256.png"
},
"jid": "d-80a844eb-6ca5-4da8-a5bd-35cb1dfe5764",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000005",
"display_name": "Контакт №6",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/%D0%9A%E2%84%96/256.png"
},
"jid": "d-c02b1459-a4ae-40b1-a099-922eb7bcffab",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000059",
"display_name": "Контакт №60",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/60/256.png"
},
"jid": "d-42927114-074e-4ec2-9e57-944fccc2f709",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000060",
"display_name": "Контакт №61",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/61/256.png"
},
"jid": "d-2c7f407d-e5ca-4b3c-b70e-6422bbd1d384",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000061",
"display_name": "Контакт №62",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/62/256.png"
},
"jid": "d-6a2dae29-e089-49ee-b33f-337639723644",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000062",
"display_name": "Контакт №63",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/63/256.png"
},
"jid": "d-d72a5a5e-18ec-4dee-b72b-c5479a1c2b19",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000063",
"display_name": "Контакт №64",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/64/256.png"
},
"jid": "d-e0c1d056-fa2e-4925-88d2-c5c97b1332b8",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000064",
"display_name": "Контакт №65",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/65/256.png"
},
"jid": "d-e52db7dd-7154-47f6-97b4-1d0805733400",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000065",
"display_name": "Контакт №66",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/66/256.png"
},
"jid": "d-bb444faa-b42f-40b0-963b-fa699295db3a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000066",
"display_name": "Контакт №67",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/67/256.png"
},
"jid": "d-ada990ee-64f9-457d-9ec2-721b530cbfd2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000067",
"display_name": "Контакт №68",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/68/256.png"
},
"jid": "d-25a29687-337d-4494-a1d9-38ccbb5ab8b6",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000068",
"display_name": "Контакт №69",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/69/256.png"
},
"jid": "d-a7e4b1c1-95fd-4664-9417-eca2c817913c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000006",
"display_name": "Контакт №7",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/%D0%9A%E2%84%96/256.png"
},
"jid": "d-fe024245-697b-4d5d-a355-ef0192ec5b71",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000069",
"display_name": "Контакт №70",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/70/256.png"
},
"jid": "d-d2c287ae-e5b3-4fb3-9824-c6f20ee311e4",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000070",
"display_name": "Контакт №71",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/71/256.png"
},
"jid": "d-5fdf262e-4a8e-4348-a3ca-193056b18b82",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000071",
"display_name": "Контакт №72",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/72/256.png"
},
"jid": "d-a4015732-6e06-428d-9074-35551d0cd760",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000072",
"display_name": "Контакт №73",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/73/256.png"
},
"jid": "d-a00129fc-2efc-40be-8d97-61f63a3fe93e",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000073",
"display_name": "Контакт №74",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/74/256.png"
},
"jid": "d-3c534253-42d8-4e25-8a7e-aada76408832",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000074",
"display_name": "Контакт №75",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/75/256.png"
},
"jid": "d-50bc59d2-9fa0-4c90-9af6-05ce0dd2531f",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000075",
"display_name": "Контакт №76",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/76/256.png"
},
"jid": "d-3aadaecc-b062-4614-b03f-57b81ddb7ece",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000076",
"display_name": "Контакт №77",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/77/256.png"
},
"jid": "d-857e533d-5a46-4b89-b0be-6fc155bef648",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000077",
"display_name": "Контакт №78",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/78/256.png"
},
"jid": "d-2f413afa-efff-465c-98e7-3398dc143951",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000078",
"display_name": "Контакт №79",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/79/256.png"
},
"jid": "d-57c1b204-0118-4c90-917a-259c025d9e60",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000007",
"display_name": "Контакт №8",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/%D0%9A%E2%84%96/256.png"
},
"jid": "d-1c1b92c4-d5dd-4e7e-af7f-17f022897259",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000079",
"display_name": "Контакт №80",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/80/256.png"
},
"jid": "d-4cf6f092-a056-45c7-8f8d-295ae211277c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000080",
"display_name": "Контакт №81",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/81/256.png"
},
"jid": "d-004e4053-ad50-4b24-9619-17e7b1c39d84",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000081",
"display_name": "Контакт №82",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/82/256.png"
},
"jid": "d-e91a67bf-6009-4db5-99f3-1f2f6e0e0f2b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000082",
"display_name": "Контакт №83",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/83/256.png"
},
"jid": "d-92a684de-0512-4e66-a286-ca27f392853a",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000083",
"display_name": "Контакт №84",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/84/256.png"
},
"jid": "d-d316412e-993c-476d-8752-213495c53e69",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000084",
"display_name": "Контакт №85",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/85/256.png"
},
"jid": "d-51e42b49-1e7e-405b-9aa0-dcc47c3f8cfb",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000085",
"display_name": "Контакт №86",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/86/256.png"
},
"jid": "d-98c9f7be-fa5a-426e-b5d9-ca9b0128f173",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000086",
"display_name": "Контакт №87",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/87/256.png"
},
"jid": "d-50a86a82-b0ea-4504-b639-ba1388096393",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000087",
"display_name": "Контакт №88",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/88/256.png"
},
"jid": "d-df061d86-facb-40d2-af8c-e323662faaab",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000088",
"display_name": "Контакт №89",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/89/256.png"
},
"jid": "d-f5de1fad-29f7-42ee-a84b-72e45fa4267b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000008",
"display_name": "Контакт №9",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%9A%E2%84%96/256.png"
},
"jid": "d-8d9d8ab5-aa39-428d-8fcf-afc2e6f1b22b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000089",
"display_name": "Контакт №90",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/90/256.png"
},
"jid": "d-ea4a1139-bb63-45ae-ab0c-031fce92a80c",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000090",
"display_name": "Контакт №91",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/91/256.png"
},
"jid": "d-5d6ccc46-0f5e-451b-89e7-c2796f0512e8",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000091",
"display_name": "Контакт №92",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/92/256.png"
},
"jid": "d-317ee099-f92d-4c98-87f4-d7ac095229b3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000092",
"display_name": "Контакт №93",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/93/256.png"
},
"jid": "d-8d35bd51-3caa-49f4-9f04-a65d1b7d802b",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000093",
"display_name": "Контакт №94",
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/94/256.png"
},
"jid": "d-9c6cb082-5643-4f24-8ed9-02044c0c3621",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000094",
"display_name": "Контакт №95",
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/95/256.png"
},
"jid": "d-caacdf41-6ff7-4c50-b2be-8dcf7ffc18c2",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000095",
"display_name": "Контакт №96",
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/96/256.png"
},
"jid": "d-37d4241a-067a-422c-9991-1d1a0eb57ca3",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000096",
"display_name": "Контакт №97",
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/97/256.png"
},
"jid": "d-2ad11cc4-da63-43e6-81a9-bf9feb968856",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000097",
"display_name": "Контакт №98",
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/98/256.png"
},
"jid": "d-4a600e64-cca3-44f3-b007-a0bbdea08e06",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+75550000098",
"display_name": "Контакт №99",
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/99/256.png"
},
"jid": "d-683fd232-1f7a-40f7-a6bd-40a2eb304286",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
},
{
"botname": "notebot",
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections"
],
"contact_email": "",
"contact_phone": "",
"display_name": "Мои заметки",
"icons": {
"lg": {
"height": 512,
"url": "http://127.0.0.1:8000/static/tada-bots/notebot512.png",
"width": 512
},
"sm": {
"height": 256,
"url": "http://127.0.0.1:8000/static/tada-bots/notebot256.png",
"width": 256
}
},
"jid": "d-b27af45d-92ea-49b9-8e2d-fd05c1cdfee3",
"last_activity": "2019-09-27T01:00:57.290293Z",
"role": "Блокнот",
"section": "8daeb4a2-4863-4953-bcf1-c58b84dc5272",
"sections": [
"8daeb4a2-4863-4953-bcf1-c58b84dc5272"
],
"status": "member"
},
{
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "+79992333341",
"display_name": "Петя II",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%9FI/256.png"
},
"is_archive": true,
"jid": "d-dde4a639-46bd-4a62-aabd-53ee63f98284",
"last_activity": null,
"role": "завхоз",
"sections": [],
"status": "member"
},
{
"botname": "feedbackbot",
"can_add_to_group": true,
"can_call": true,
"can_create_task": true,
"can_delete": true,
"can_send_message": true,
"changeable_fields": [
"add_to_team_rights",
"contact_email",
"contact_phone",
"role",
"section",
"sections",
"status"
],
"contact_email": "",
"contact_phone": "",
"display_name": "Поддержка",
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%9F/256.png"
},
"jid": "d-c13d7cb9-d28d-40c7-822a-5f8539224358",
"last_activity": null,
"role": "",
"sections": [],
"status": "member"
}
],
"devices": [],
"direct_chats": [
{
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:36.029576Z",
"display_name": "tada.teamBot",
"gentime": 1569546004144886708,
"icons": {
"lg": {
"height": 512,
"url": "http://127.0.0.1:8000/static/tada-bots/systembot512.png",
"width": 512
},
"sm": {
"height": 256,
"url": "http://127.0.0.1:8000/static/tada-bots/systembot256.png",
"width": 256
}
},
"jid": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"last_message": {
"chat": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"chat_type": "direct",
"content": {
"text": "Вот, чем я могу вам помочь:\n\n/стикерпак НАЗВАНИЕ СТИКЕРПАКА — загрузить стикеры из телеграма (у вас должно быть разрешение автора стикерпака)\n\n/добавить НОМЕР ТЕЛЕФОНА — добавить участника в команду\n\n/онлайн — кто онлайн (DEBUG)\n\n/чпок — личное сообщение от нового контакта (DEBUG)\n\n/чпок2 — новый контакт (DEBUG)\n\n/спам КОЛИЧЕСТВО — много сообщений (DEBUG)\n\n/спам3 КОЛИЧЕСТВО — много сообщений, но медленно, раз в 3 секунды (DEBUG)\n\n/ссылкотест — много сообщений (DEBUG)\n\n/неделя — задачи, сделанные за прошлую неделю (DEBUG)\n\n/пушвкл — активизировать ВСЕ выключенные устройства для пушей (DEBUG)\n\n/пушвыкл — эмулировать ошибку — отключить все устройства (DEBUG)\n\n/пуш — послать мне пуш (DEBUG)\n\n/пуш3 — послать мне пуш в другие команды (DEBUG)\n\n/пуш2 — послать мне НЕ-data-пуш на активное устройство (DEBUG)\n\n/ пуш4 — послать мне voip-пуш (DEBUG)\n\n/прогресс — Сообщение для тестирования сообщений с type=\"progress\" (DEBUG)\n\n/клавотест — tada.teamBot печатает... (DEBUG)\n\n/камикадзе — сообщение, которое само удалится (DEBUG)\n\n/задача ЗАГОЛОВОК ЗАДАЧИ — поставить себе новую задачу",
"type": "plain"
},
"created": "2019-09-27T01:00:04.139657Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546004144886708,
"is_last": true,
"message_id": "76c52cb3-150b-4b81-9cf5-79b7af5bf27c",
"prev": "1c932181-aece-4f11-8d36-757bc478d86e",
"to": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d"
},
"last_read_message_id": "1c932181-aece-4f11-8d36-757bc478d86e",
"notifications_enabled": true,
"num_unread": 1
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T11:47:17.721698Z",
"display_name": "Контакт №427",
"gentime": 1568807237754956288,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/27/256.png"
},
"jid": "d-48b55e3e-8b36-44a7-98ef-f15d15c1af10",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T11:28:47.156089Z",
"display_name": "Контакт №426",
"gentime": 1568806127232927232,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/26/256.png"
},
"jid": "d-3d8968d6-4f58-4ee3-b0a2-1ae7ea7f5d1f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T11:10:10.014826Z",
"display_name": "Контакт №425",
"gentime": 1568805010058920448,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/25/256.png"
},
"jid": "d-3ec80244-018d-496d-9f0d-953fd93fbd26",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T10:50:47.482366Z",
"display_name": "Контакт №424",
"gentime": 1568803847591986944,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/24/256.png"
},
"jid": "d-0df4438b-45f6-492a-86fb-df0824138b90",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T10:33:25.666262Z",
"display_name": "Контакт №423",
"gentime": 1568802805800289024,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/23/256.png"
},
"jid": "d-72729ad6-ade2-417a-aebf-c98e48cce407",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T10:15:10.345208Z",
"display_name": "Контакт №422",
"gentime": 1568801710374128896,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/22/256.png"
},
"jid": "d-c274d33e-ef6d-4dcb-aefb-ef1e7b280a69",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T09:57:28.083823Z",
"display_name": "Контакт №421",
"gentime": 1568800648119096576,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/21/256.png"
},
"jid": "d-8ddad85c-f605-45e7-acc7-1d7c8759ddc4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T09:11:35.130290Z",
"display_name": "Контакт №420",
"gentime": 1568797895142844928,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/20/256.png"
},
"jid": "d-b067d36e-124a-437f-af9c-b937124e5339",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T09:08:02.244108Z",
"display_name": "Контакт №419",
"gentime": 1568797682251755008,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/19/256.png"
},
"jid": "d-64979b07-83a2-4590-8525-30cc86c21e32",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T09:04:53.184215Z",
"display_name": "Контакт №418",
"gentime": 1568797493188482560,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/18/256.png"
},
"jid": "d-826d54f6-c265-4a50-9384-63853d80b144",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T09:01:48.138203Z",
"display_name": "Контакт №417",
"gentime": 1568797308152818944,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/17/256.png"
},
"jid": "d-c7e4ceb1-efce-45ef-ade9-3b9bf4547b26",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:58:50.882484Z",
"display_name": "Контакт №416",
"gentime": 1568797130887118592,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/16/256.png"
},
"jid": "d-e9af387b-d686-44f2-8022-4cf770b0f51e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:55:45.856534Z",
"display_name": "Контакт №415",
"gentime": 1568796945859561216,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/15/256.png"
},
"jid": "d-00fe910a-ba8f-4c33-88ae-17232ef4a721",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:52:44.116349Z",
"display_name": "Контакт №414",
"gentime": 1568796764124461056,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/14/256.png"
},
"jid": "d-b69a9bd2-7a97-4520-b8a1-96a25cd5b65c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:49:50.024650Z",
"display_name": "Контакт №413",
"gentime": 1568796590032379392,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/13/256.png"
},
"jid": "d-794d4314-83ca-4ef6-905f-b7788d72d817",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:46:37.196892Z",
"display_name": "Контакт №412",
"gentime": 1568796397212334336,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/12/256.png"
},
"jid": "d-7dd782a7-e802-46b0-a549-8560a8094566",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:43:28.034422Z",
"display_name": "Контакт №411",
"gentime": 1568796208036874752,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/11/256.png"
},
"jid": "d-6f226c38-1627-4e33-9f47-91e9b3298fcc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:40:18.965296Z",
"display_name": "Контакт №410",
"gentime": 1568796018978260992,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/10/256.png"
},
"jid": "d-e561dbb1-baeb-4a3b-b7dc-1b307e00b8f1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:37:14.352430Z",
"display_name": "Контакт №409",
"gentime": 1568795834357196800,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/09/256.png"
},
"jid": "d-21ed08a6-14cc-482e-a135-fe618758be3d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:34:16.396118Z",
"display_name": "Контакт №408",
"gentime": 1568795656402444288,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/08/256.png"
},
"jid": "d-da65156b-9eac-41b0-b288-8f8085ad3157",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:31:10.686951Z",
"display_name": "Контакт №407",
"gentime": 1568795470693068032,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/07/256.png"
},
"jid": "d-f9e1dc4f-092b-44e2-be9a-95fdc6e6254f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:28:12.503882Z",
"display_name": "Контакт №406",
"gentime": 1568795292515655936,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/06/256.png"
},
"jid": "d-8e8db5eb-5fe0-40bf-91ba-fdf8f0035b50",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:25:14.906739Z",
"display_name": "Контакт №405",
"gentime": 1568795114910267648,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/05/256.png"
},
"jid": "d-8a53e44c-4638-429e-bb7e-a1107af84ea3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:22:27.085803Z",
"display_name": "Контакт №404",
"gentime": 1568794947095382016,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/04/256.png"
},
"jid": "d-19ab8579-b584-4c3f-828f-191dcbd19688",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:19:37.216374Z",
"display_name": "Контакт №403",
"gentime": 1568794777219330048,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/03/256.png"
},
"jid": "d-5293a29f-f975-4956-8c9b-6c848f3e7515",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:16:59.044779Z",
"display_name": "Контакт №402",
"gentime": 1568794619053632000,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/02/256.png"
},
"jid": "d-b12f55f3-9250-46bc-b55b-38e326a1758f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:13:32.442454Z",
"display_name": "Контакт №400",
"gentime": 1568794412445305344,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/00/256.png"
},
"jid": "d-b244cdb4-ac57-412c-8582-d4f4c1602d97",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:12:55.247946Z",
"display_name": "Контакт №399",
"gentime": 1568794375281226496,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/99/256.png"
},
"jid": "d-00dd47be-13c3-449b-b07c-668680d5de58",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:12:31.605939Z",
"display_name": "Контакт №398",
"gentime": 1568794351619167488,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/98/256.png"
},
"jid": "d-eaa2d15f-1814-462a-84ef-3297b35c4a26",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:12:10.743314Z",
"display_name": "Контакт №397",
"gentime": 1568794330755425280,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/97/256.png"
},
"jid": "d-f14d5eda-af18-444d-a5f8-99369aad5327",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:38.989316Z",
"display_name": "Контакт №396",
"gentime": 1568794298994534144,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/96/256.png"
},
"jid": "d-6b86d87d-a4a8-4931-b7c3-aa88f0c086af",
"notifications_enabled": true
},
{
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.998280Z",
"display_name": "Мои заметки",
"gentime": 1568794296002471424,
"icons": {
"lg": {
"height": 512,
"url": "http://127.0.0.1:8000/static/tada-bots/notebot512.png",
"width": 512
},
"sm": {
"height": 256,
"url": "http://127.0.0.1:8000/static/tada-bots/notebot256.png",
"width": 256
}
},
"jid": "d-b27af45d-92ea-49b9-8e2d-fd05c1cdfee3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.957236Z",
"display_name": "Контакт №1",
"gentime": 1568794295973127168,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/%D0%9A%E2%84%96/256.png"
},
"jid": "d-e9e48f05-f9f5-44a0-9c0c-c19bab9b064a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.911687Z",
"display_name": "Контакт №2",
"gentime": 1568794295915593984,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%9A%E2%84%96/256.png"
},
"jid": "d-5c9b32bf-ac42-4d2e-85a2-1eb81b04fb98",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.895828Z",
"display_name": "Контакт №3",
"gentime": 1568794295897847296,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/%D0%9A%E2%84%96/256.png"
},
"jid": "d-f3358016-2257-4568-85d3-d34618fb19af",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.873723Z",
"display_name": "Контакт №4",
"gentime": 1568794295876973312,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/%D0%9A%E2%84%96/256.png"
},
"jid": "d-9e190661-7095-4a5c-8ec3-76c0bd173e56",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.846893Z",
"display_name": "Контакт №5",
"gentime": 1568794295852432896,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/%D0%9A%E2%84%96/256.png"
},
"jid": "d-4d6adfca-cacc-4cf7-951a-e3bce313d752",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.806259Z",
"display_name": "Контакт №6",
"gentime": 1568794295811272448,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/%D0%9A%E2%84%96/256.png"
},
"jid": "d-c02b1459-a4ae-40b1-a099-922eb7bcffab",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.781906Z",
"display_name": "Контакт №7",
"gentime": 1568794295784768512,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/%D0%9A%E2%84%96/256.png"
},
"jid": "d-fe024245-697b-4d5d-a355-ef0192ec5b71",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.758920Z",
"display_name": "Контакт №8",
"gentime": 1568794295762405376,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/%D0%9A%E2%84%96/256.png"
},
"jid": "d-1c1b92c4-d5dd-4e7e-af7f-17f022897259",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.737987Z",
"display_name": "Контакт №9",
"gentime": 1568794295740657408,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%9A%E2%84%96/256.png"
},
"jid": "d-8d9d8ab5-aa39-428d-8fcf-afc2e6f1b22b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.717986Z",
"display_name": "Контакт №10",
"gentime": 1568794295720684032,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/10/256.png"
},
"jid": "d-d0719ec7-eeda-4336-99b4-ed2eb53dcafa",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.699198Z",
"display_name": "Контакт №11",
"gentime": 1568794295703444224,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/11/256.png"
},
"jid": "d-9a4e9a23-7957-4903-8d59-4b1c1558a9cd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.679366Z",
"display_name": "Контакт №12",
"gentime": 1568794295682823168,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/12/256.png"
},
"jid": "d-15a39235-aeab-4ca5-8485-959db58b66c9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.647344Z",
"display_name": "Контакт №13",
"gentime": 1568794295649958400,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/13/256.png"
},
"jid": "d-c9b48424-3546-41bf-9340-aecd391cd508",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.624567Z",
"display_name": "Контакт №14",
"gentime": 1568794295627566592,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/14/256.png"
},
"jid": "d-0c445dcf-5ecb-4076-a35f-5187f7d67db2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.594978Z",
"display_name": "Контакт №15",
"gentime": 1568794295600261376,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/15/256.png"
},
"jid": "d-3379af00-33f2-4f37-85a9-1e1be95d2336",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.566501Z",
"display_name": "Контакт №16",
"gentime": 1568794295569477376,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/16/256.png"
},
"jid": "d-f401f33b-2740-49d7-9589-35ab4f3a06ef",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.541469Z",
"display_name": "Контакт №17",
"gentime": 1568794295544972032,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/17/256.png"
},
"jid": "d-31d50a22-ecf0-4474-ac83-235e1ef587c2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.518814Z",
"display_name": "Контакт №18",
"gentime": 1568794295523609600,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/18/256.png"
},
"jid": "d-73f2890d-7e2c-473a-865e-c00ea119f0a3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.491605Z",
"display_name": "Контакт №19",
"gentime": 1568794295495588864,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/19/256.png"
},
"jid": "d-404f212e-1e8c-4a2a-b1c1-df75c2bbce35",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.467175Z",
"display_name": "Контакт №20",
"gentime": 1568794295471952384,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/20/256.png"
},
"jid": "d-6c8b3462-4b15-4ff3-ad04-f0d48fa11429",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.443877Z",
"display_name": "Контакт №21",
"gentime": 1568794295447126784,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/21/256.png"
},
"jid": "d-c8dce1b0-16e3-46c0-a7fb-2ee37d3643b7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.423636Z",
"display_name": "Контакт №22",
"gentime": 1568794295427598592,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/22/256.png"
},
"jid": "d-aa379f92-75fe-463c-923b-3564a1251732",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.398082Z",
"display_name": "Контакт №23",
"gentime": 1568794295401486592,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/23/256.png"
},
"jid": "d-fd6f2eb7-ca34-4458-94ca-415b3e95bce9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.352139Z",
"display_name": "Контакт №24",
"gentime": 1568794295360049408,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/24/256.png"
},
"jid": "d-9e54a8f3-6d76-4c25-83d5-35b4be4acce3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.288929Z",
"display_name": "Контакт №25",
"gentime": 1568794295305383680,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/25/256.png"
},
"jid": "d-a09e789d-4eaa-4a0b-bff8-16eb1182b202",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.260432Z",
"display_name": "Контакт №26",
"gentime": 1568794295263271680,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/26/256.png"
},
"jid": "d-39f3069b-32d5-49d3-90f1-ac506797cdb9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.240234Z",
"display_name": "Контакт №27",
"gentime": 1568794295242794752,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/27/256.png"
},
"jid": "d-1fbb879d-266e-4787-bbcd-43bd55817f8c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.222855Z",
"display_name": "Контакт №28",
"gentime": 1568794295225802496,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/28/256.png"
},
"jid": "d-98f9928c-97c5-4319-ad0d-5e3ca5db0b44",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.199589Z",
"display_name": "Контакт №29",
"gentime": 1568794295202580992,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/29/256.png"
},
"jid": "d-f88c5e1e-7376-44f3-9776-dcc7bba42bc3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.159757Z",
"display_name": "Контакт №30",
"gentime": 1568794295164092160,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/30/256.png"
},
"jid": "d-d133cf20-a27a-4aaf-89fc-08ed54909ed4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.140633Z",
"display_name": "Контакт №31",
"gentime": 1568794295143429632,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/31/256.png"
},
"jid": "d-b1789160-dcdc-4631-a570-14acf2941802",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.118279Z",
"display_name": "Контакт №32",
"gentime": 1568794295120771840,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/32/256.png"
},
"jid": "d-f9524d8a-9934-4d62-a748-2045311ce2eb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.091224Z",
"display_name": "Контакт №33",
"gentime": 1568794295096055808,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/33/256.png"
},
"jid": "d-8142afc2-6d78-4934-bd81-4efb7b8ba707",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.068990Z",
"display_name": "Контакт №34",
"gentime": 1568794295073282304,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/34/256.png"
},
"jid": "d-e11860e2-cd79-48b6-89ff-26b8e9b60a1b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.050586Z",
"display_name": "Контакт №35",
"gentime": 1568794295053199616,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/35/256.png"
},
"jid": "d-e29836b0-1681-4a57-9e86-4611b812cff3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.024304Z",
"display_name": "Контакт №36",
"gentime": 1568794295027457792,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/36/256.png"
},
"jid": "d-41a6243b-d608-428e-b877-f12344980838",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:35.002647Z",
"display_name": "Контакт №37",
"gentime": 1568794295007529472,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/37/256.png"
},
"jid": "d-d226d776-4392-43c6-95dd-60597fa0f062",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.985397Z",
"display_name": "Контакт №38",
"gentime": 1568794294988502784,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/38/256.png"
},
"jid": "d-6c2ee5cd-ef10-42fb-966e-610c00918189",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.950736Z",
"display_name": "Контакт №39",
"gentime": 1568794294958621952,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/39/256.png"
},
"jid": "d-d28389c3-27da-4022-9e15-54eee590d356",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.910966Z",
"display_name": "Контакт №40",
"gentime": 1568794294920954624,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/40/256.png"
},
"jid": "d-d3c4d312-1b82-48f8-b87a-b8db5b5c77d0",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.875937Z",
"display_name": "Контакт №119",
"gentime": 1568794294885501184,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/19/256.png"
},
"jid": "d-ed18b561-40a4-43aa-9a11-09af147e9fa5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.844479Z",
"display_name": "Контакт №120",
"gentime": 1568794294846169600,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/20/256.png"
},
"jid": "d-287250ec-73e0-47c8-9e86-102d168ffd65",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.828094Z",
"display_name": "Контакт №121",
"gentime": 1568794294831629568,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/21/256.png"
},
"jid": "d-91bd2238-fd1d-4283-9f43-a9ca2e07b2c5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.805868Z",
"display_name": "Контакт №122",
"gentime": 1568794294806856960,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/22/256.png"
},
"jid": "d-ae989a4e-4b6f-4177-ac28-e0d3a1951c59",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.788425Z",
"display_name": "Контакт №123",
"gentime": 1568794294791047424,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/23/256.png"
},
"jid": "d-c6a9be86-091c-468b-8e9a-c7042babe594",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.771985Z",
"display_name": "Контакт №124",
"gentime": 1568794294776272384,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/24/256.png"
},
"jid": "d-efb00ded-2b06-4c8d-8a1c-01ccd5420b54",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.744202Z",
"display_name": "Контакт №125",
"gentime": 1568794294746519040,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/25/256.png"
},
"jid": "d-6a793d16-7b95-47f2-affd-5a163539727e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.720197Z",
"display_name": "Контакт №126",
"gentime": 1568794294725655040,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/26/256.png"
},
"jid": "d-db260b06-9580-4cd0-b4fa-6d85ac491811",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.693499Z",
"display_name": "Контакт №127",
"gentime": 1568794294698393088,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/27/256.png"
},
"jid": "d-79e3fefc-bf9d-40b7-82c5-f2b2310aebc6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.661644Z",
"display_name": "Контакт №128",
"gentime": 1568794294667699200,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/28/256.png"
},
"jid": "d-ce8690e4-7044-4a54-b9a3-65bef8df27ee",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.600379Z",
"display_name": "Контакт №129",
"gentime": 1568794294608057088,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/29/256.png"
},
"jid": "d-f99c0634-0c59-4473-b870-8f4468da68fb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.540298Z",
"display_name": "Контакт №130",
"gentime": 1568794294544010240,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/30/256.png"
},
"jid": "d-9957033d-3d51-48ed-a341-c09955830f4e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.455075Z",
"display_name": "Контакт №131",
"gentime": 1568794294472296704,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/31/256.png"
},
"jid": "d-80f6f2ec-f291-49f6-b502-fafa413ead77",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.360815Z",
"display_name": "Контакт №132",
"gentime": 1568794294371640320,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/32/256.png"
},
"jid": "d-b41ae2b9-5e9f-45f3-ab5a-77e06ccafe40",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.328964Z",
"display_name": "Контакт №133",
"gentime": 1568794294332698624,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/33/256.png"
},
"jid": "d-d79cdda0-093f-43e1-adaf-fbfdb18644b9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.294379Z",
"display_name": "Контакт №134",
"gentime": 1568794294298330368,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/34/256.png"
},
"jid": "d-31753dc1-1b68-4ede-b648-e01d3d0ec099",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.140455Z",
"display_name": "Контакт №135",
"gentime": 1568794294179032832,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/35/256.png"
},
"jid": "d-10805656-e3d2-4e6b-91bb-74554fa41c0d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:34.038730Z",
"display_name": "Контакт №136",
"gentime": 1568794294062485504,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/36/256.png"
},
"jid": "d-4d1fa7c0-9267-4d54-80ee-d721da284f52",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.971441Z",
"display_name": "Контакт №137",
"gentime": 1568794293988442112,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/37/256.png"
},
"jid": "d-bd943a8d-21f5-4bd3-a73b-d20185d35a41",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.860149Z",
"display_name": "Контакт №138",
"gentime": 1568794293904414976,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/38/256.png"
},
"jid": "d-029188c3-bc5c-4891-b310-145c5c94aef9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.717389Z",
"display_name": "Контакт №139",
"gentime": 1568794293722100992,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/39/256.png"
},
"jid": "d-bb59e634-b88f-4420-8874-9032e135ebf9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.617048Z",
"display_name": "Контакт №140",
"gentime": 1568794293656366592,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/40/256.png"
},
"jid": "d-73e58286-a8e3-4e18-82d8-2b349f757182",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.551518Z",
"display_name": "Контакт №141",
"gentime": 1568794293576747008,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/41/256.png"
},
"jid": "d-ba5cbfa3-dbc6-44d4-a050-739bfacaa2ac",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.126908Z",
"display_name": "Контакт №142",
"gentime": 1568794293135230976,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/42/256.png"
},
"jid": "d-7498e6b5-7dd6-47f9-ac4d-4615e516291c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.080785Z",
"display_name": "Контакт №143",
"gentime": 1568794293087077376,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/43/256.png"
},
"jid": "d-1a48eb42-40bd-44fc-b38c-0cde5cc7e8d2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:33.028056Z",
"display_name": "Контакт №144",
"gentime": 1568794293033947392,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/44/256.png"
},
"jid": "d-26f1b022-2336-4e4d-ae13-ad86ec2f41e2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.967235Z",
"display_name": "Контакт №145",
"gentime": 1568794292979462656,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/45/256.png"
},
"jid": "d-0cbc0633-f2ec-4572-85a1-b7e0fd466f69",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.923501Z",
"display_name": "Контакт №146",
"gentime": 1568794292930699776,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/46/256.png"
},
"jid": "d-37897215-add1-4c92-bec4-496349ea791b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.879584Z",
"display_name": "Контакт №147",
"gentime": 1568794292888950784,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/47/256.png"
},
"jid": "d-7b1a2b68-7e14-4181-bcd8-38d9a8a043b0",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.835787Z",
"display_name": "Контакт №148",
"gentime": 1568794292840575232,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/48/256.png"
},
"jid": "d-c2692044-52a5-4728-b0e3-b2ab53f7b73b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.792802Z",
"display_name": "Контакт №149",
"gentime": 1568794292801875200,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/49/256.png"
},
"jid": "d-469d7eaa-75d1-41cc-b41e-3d83eb61c067",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.754009Z",
"display_name": "Контакт №150",
"gentime": 1568794292759962368,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/50/256.png"
},
"jid": "d-24dda9c8-54f5-48d9-913d-5710d4dfcad2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.703232Z",
"display_name": "Контакт №151",
"gentime": 1568794292723603712,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/51/256.png"
},
"jid": "d-ade6d277-2611-45c8-8e5e-518509cf046d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.221791Z",
"display_name": "Контакт №152",
"gentime": 1568794292246702080,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/52/256.png"
},
"jid": "d-848514b2-9ca9-4d86-a81f-f0d2c74637e5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.170345Z",
"display_name": "Контакт №153",
"gentime": 1568794292185577472,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/53/256.png"
},
"jid": "d-1668d941-1756-41a5-93b0-064b6a08faca",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.096702Z",
"display_name": "Контакт №154",
"gentime": 1568794292120426752,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/54/256.png"
},
"jid": "d-40924f3c-acc5-437c-9547-78b37a0aff8f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:32.008305Z",
"display_name": "Контакт №155",
"gentime": 1568794292018117632,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/55/256.png"
},
"jid": "d-a32921b3-81c6-4e64-bfbf-51b5eedda2fd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.942864Z",
"display_name": "Контакт №156",
"gentime": 1568794291968454656,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/56/256.png"
},
"jid": "d-969646f5-fd33-4ca8-b8fa-e67ebfc0fb10",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.907196Z",
"display_name": "Контакт №157",
"gentime": 1568794291909074944,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/57/256.png"
},
"jid": "d-1b0cb860-669e-426f-8cf1-c073487257aa",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.882424Z",
"display_name": "Контакт №158",
"gentime": 1568794291889846272,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/58/256.png"
},
"jid": "d-3fffef21-a915-472d-9e73-fda394976954",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.837809Z",
"display_name": "Контакт №159",
"gentime": 1568794291840578560,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/59/256.png"
},
"jid": "d-ccf0b654-982c-478c-8566-3c4315eece27",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.812833Z",
"display_name": "Контакт №160",
"gentime": 1568794291820077568,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/60/256.png"
},
"jid": "d-a16ea1bd-6779-4774-88f5-0f1da0468600",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.681324Z",
"display_name": "Контакт №161",
"gentime": 1568794291687228672,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/61/256.png"
},
"jid": "d-20c83537-8b2d-4e27-9f0c-e0e98e4ac064",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.123531Z",
"display_name": "Контакт №162",
"gentime": 1568794291127240960,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/62/256.png"
},
"jid": "d-ac980ed0-1913-413c-a62c-df8d7df47cce",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.057182Z",
"display_name": "Контакт №163",
"gentime": 1568794291068428032,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/63/256.png"
},
"jid": "d-4efcae5b-9290-4576-b54c-067570bfa31b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:31.021157Z",
"display_name": "Контакт №164",
"gentime": 1568794291025682176,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/64/256.png"
},
"jid": "d-63778df5-8342-41b8-9cfc-9158538de4a5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.972437Z",
"display_name": "Контакт №165",
"gentime": 1568794290989185792,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/65/256.png"
},
"jid": "d-bbe40e9f-6a0b-441b-a31f-a2afeceffbfb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.941004Z",
"display_name": "Контакт №166",
"gentime": 1568794290950924032,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/66/256.png"
},
"jid": "d-c7939bb0-2125-49f8-91a2-ab04bd428ea2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.902455Z",
"display_name": "Контакт №167",
"gentime": 1568794290907063808,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/67/256.png"
},
"jid": "d-c810c65e-342a-4ec8-a588-d618c49e4b51",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.855304Z",
"display_name": "Контакт №168",
"gentime": 1568794290858298880,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/68/256.png"
},
"jid": "d-b2ecc1a8-b5fc-4081-808f-cdb7c22eb777",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.835296Z",
"display_name": "Контакт №169",
"gentime": 1568794290840443648,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/69/256.png"
},
"jid": "d-d2d77e40-9fff-4796-8326-8b5bff7c7f72",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.794592Z",
"display_name": "Контакт №170",
"gentime": 1568794290800403968,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/70/256.png"
},
"jid": "d-c8ae7491-6cb6-430a-a9b2-6586a56ba569",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.780257Z",
"display_name": "Контакт №171",
"gentime": 1568794290782592256,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/71/256.png"
},
"jid": "d-a3e4bad7-4082-4079-82f4-77e210c89382",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.733779Z",
"display_name": "Контакт №172",
"gentime": 1568794290745044480,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/72/256.png"
},
"jid": "d-d9814956-1ff6-41dc-9752-68faf3a376b7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.680306Z",
"display_name": "Контакт №173",
"gentime": 1568794290682100480,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/73/256.png"
},
"jid": "d-65292d18-3e54-47e5-89d6-d514c5df9eaa",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.646344Z",
"display_name": "Контакт №174",
"gentime": 1568794290654335744,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/74/256.png"
},
"jid": "d-3f89d0de-f25e-4d9a-9e6b-41a6120f5aff",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.595924Z",
"display_name": "Контакт №175",
"gentime": 1568794290601017088,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/75/256.png"
},
"jid": "d-c474ee49-33f6-4822-873e-ffe5b804008a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.538608Z",
"display_name": "Контакт №176",
"gentime": 1568794290556705536,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/76/256.png"
},
"jid": "d-381587e3-afb0-45a5-8711-a037479780c9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.472301Z",
"display_name": "Контакт №177",
"gentime": 1568794290490631936,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/77/256.png"
},
"jid": "d-d09df7cc-535a-4f89-97b1-1d8ca2cfe5cf",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:30.437946Z",
"display_name": "Контакт №178",
"gentime": 1568794290443086336,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/78/256.png"
},
"jid": "d-b65e4289-447a-415f-90e0-c2984f265b17",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:29.695578Z",
"display_name": "Контакт №179",
"gentime": 1568794289708125696,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/79/256.png"
},
"jid": "d-0368f7b7-f491-4d34-ba61-2c7dfbb97dbf",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:29.582614Z",
"display_name": "Контакт №180",
"gentime": 1568794289615649280,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/80/256.png"
},
"jid": "d-5ec7edc8-1d75-4f2d-8002-5af2b732a915",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:29.491825Z",
"display_name": "Контакт №181",
"gentime": 1568794289511331584,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/81/256.png"
},
"jid": "d-6b0d4e2c-ff11-4d21-b8d8-c48a429eadc3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:29.442689Z",
"display_name": "Контакт №182",
"gentime": 1568794289447742208,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/82/256.png"
},
"jid": "d-bdc5f7c2-bb1b-4297-bed9-00f1e4611697",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.995867Z",
"display_name": "Контакт №183",
"gentime": 1568794289007472640,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/83/256.png"
},
"jid": "d-31418458-ad17-4ba0-abc0-b12801cddc78",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.971791Z",
"display_name": "Контакт №184",
"gentime": 1568794288974462720,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/84/256.png"
},
"jid": "d-7d425a60-749a-4110-ab6d-96c1a3973f6e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.954968Z",
"display_name": "Контакт №185",
"gentime": 1568794288957334016,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/85/256.png"
},
"jid": "d-ae0255a8-e314-4a55-a21f-d7e2972e6a02",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.911186Z",
"display_name": "Контакт №186",
"gentime": 1568794288915073280,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/86/256.png"
},
"jid": "d-0725e50b-4614-4067-9139-b48e1a45b0a7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.864262Z",
"display_name": "Контакт №187",
"gentime": 1568794288870364928,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/87/256.png"
},
"jid": "d-87079db1-4c81-4c7c-b460-2735503a9864",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.808239Z",
"display_name": "Контакт №188",
"gentime": 1568794288842966784,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/88/256.png"
},
"jid": "d-6071c15e-678a-46cb-9850-5ea79d6ca429",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.738532Z",
"display_name": "Контакт №189",
"gentime": 1568794288746554624,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/89/256.png"
},
"jid": "d-011c5813-c2ed-4a13-bdd8-7e3dc68be8d4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.635341Z",
"display_name": "Контакт №190",
"gentime": 1568794288647583744,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/90/256.png"
},
"jid": "d-617e3040-081a-4443-9cf6-3492c798b0ca",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.282263Z",
"display_name": "Контакт №191",
"gentime": 1568794288283728640,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/91/256.png"
},
"jid": "d-8d916299-c8db-4cc2-8868-ad186d503d99",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.245307Z",
"display_name": "Контакт №192",
"gentime": 1568794288251151872,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/92/256.png"
},
"jid": "d-6f1b43c4-7abb-438e-8a2c-5d47e6122fdb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.211197Z",
"display_name": "Контакт №193",
"gentime": 1568794288213032448,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/93/256.png"
},
"jid": "d-75c57b8a-2fb6-4321-a811-895f457fd7fc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:28.196697Z",
"display_name": "Контакт №194",
"gentime": 1568794288201500416,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/94/256.png"
},
"jid": "d-b528a5cf-b3b7-4252-b73f-d88c36043369",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.962940Z",
"display_name": "Контакт №195",
"gentime": 1568794287965124352,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/95/256.png"
},
"jid": "d-8d6cff09-5fba-43c3-9b5f-315616895a59",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.927549Z",
"display_name": "Контакт №196",
"gentime": 1568794287944658688,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/96/256.png"
},
"jid": "d-115d83d0-3b74-4941-a245-6fd0c22b5b2d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.894387Z",
"display_name": "Контакт №197",
"gentime": 1568794287900732160,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/97/256.png"
},
"jid": "d-1181f1eb-c143-4861-bdd4-820cc8b97f1d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.831476Z",
"display_name": "Контакт №198",
"gentime": 1568794287834249728,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/98/256.png"
},
"jid": "d-bda3672c-8354-4c93-a6c8-250f8d593624",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.779592Z",
"display_name": "Контакт №199",
"gentime": 1568794287784644608,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/99/256.png"
},
"jid": "d-ee53b54c-e168-4f05-a17e-b94cd2886a02",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.721323Z",
"display_name": "Контакт №200",
"gentime": 1568794287753044736,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/00/256.png"
},
"jid": "d-095cef7c-c1a7-4a0d-9634-31ad5fee340e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.647958Z",
"display_name": "Контакт №201",
"gentime": 1568794287662578432,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/01/256.png"
},
"jid": "d-672e6338-6bad-47e1-8562-0fb093f3151b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.595265Z",
"display_name": "Контакт №202",
"gentime": 1568794287608648448,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/02/256.png"
},
"jid": "d-09c95402-e0ff-4160-8f6f-496b8f922f84",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.519793Z",
"display_name": "Контакт №203",
"gentime": 1568794287530038784,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/03/256.png"
},
"jid": "d-12750eea-1b52-413f-897c-63d6012f99b0",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.388344Z",
"display_name": "Контакт №204",
"gentime": 1568794287403172352,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/04/256.png"
},
"jid": "d-26aad3c5-8cc9-402a-a23e-36f81e7bee9c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.315265Z",
"display_name": "Контакт №41",
"gentime": 1568794287355946752,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/41/256.png"
},
"jid": "d-6f0f4d7b-1a59-4733-96af-9eb3a33973cb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:27.196782Z",
"display_name": "Контакт №42",
"gentime": 1568794287232751360,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/42/256.png"
},
"jid": "d-3a3681f2-c594-4a37-be02-9232685aecac",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:26.624787Z",
"display_name": "Контакт №43",
"gentime": 1568794286643341312,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/43/256.png"
},
"jid": "d-bd78411a-62f0-4f13-878f-9e57f17fb71b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:26.600258Z",
"display_name": "Контакт №44",
"gentime": 1568794286606050048,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/44/256.png"
},
"jid": "d-1d5794b7-5e86-4b52-918f-aa737abd0013",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:26.161159Z",
"display_name": "Контакт №45",
"gentime": 1568794286171129600,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/45/256.png"
},
"jid": "d-599f5c6c-c265-4d7a-83d3-eea1172b8f4b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:26.079558Z",
"display_name": "Контакт №46",
"gentime": 1568794286101098240,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/46/256.png"
},
"jid": "d-cf1262cf-e3ba-498a-b51c-22019e87e1e3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:26.017661Z",
"display_name": "Контакт №47",
"gentime": 1568794286029970688,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/47/256.png"
},
"jid": "d-175b2661-3f8e-4a27-afc7-1f2e00848d28",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.810111Z",
"display_name": "Контакт №48",
"gentime": 1568794285815695616,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/48/256.png"
},
"jid": "d-04248eba-316d-4553-8a9d-b681b2f6504c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.348386Z",
"display_name": "Контакт №49",
"gentime": 1568794285354053632,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/49/256.png"
},
"jid": "d-9a6a0991-ac2d-4a43-8824-13aef231f367",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.283798Z",
"display_name": "Контакт №50",
"gentime": 1568794285291308800,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/50/256.png"
},
"jid": "d-ca1eab34-c39c-4e84-ac24-6f109cda0ba7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.232347Z",
"display_name": "Контакт №51",
"gentime": 1568794285238848256,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/51/256.png"
},
"jid": "d-546436e2-c6e6-4815-b8f9-7d3fef3cbff2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.161150Z",
"display_name": "Контакт №52",
"gentime": 1568794285171614976,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/52/256.png"
},
"jid": "d-60aace84-cd87-48a1-99fd-dc7e203a62e6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.073664Z",
"display_name": "Контакт №53",
"gentime": 1568794285095289600,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/53/256.png"
},
"jid": "d-555f8446-419f-40f1-9ab3-6f436f2667a4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:25.019593Z",
"display_name": "Контакт №54",
"gentime": 1568794285038016256,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/54/256.png"
},
"jid": "d-05500549-4017-4f4c-8872-030e77b5f6b8",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.959427Z",
"display_name": "Контакт №55",
"gentime": 1568794284962721792,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/55/256.png"
},
"jid": "d-03dc39ee-214d-44eb-91d3-396c23e2da54",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.922230Z",
"display_name": "Контакт №56",
"gentime": 1568794284935223040,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/56/256.png"
},
"jid": "d-06d4c223-3489-473a-828c-609084a52185",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.863392Z",
"display_name": "Контакт №57",
"gentime": 1568794284885101312,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/57/256.png"
},
"jid": "d-049286d3-42e2-426b-bb55-3eafaf357994",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.781085Z",
"display_name": "Контакт №58",
"gentime": 1568794284796690176,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/58/256.png"
},
"jid": "d-233a11c2-3e77-42d9-9deb-3fae6cdf7d17",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.762769Z",
"display_name": "Контакт №59",
"gentime": 1568794284767635712,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/59/256.png"
},
"jid": "d-80a844eb-6ca5-4da8-a5bd-35cb1dfe5764",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.715111Z",
"display_name": "Контакт №60",
"gentime": 1568794284727085056,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/60/256.png"
},
"jid": "d-42927114-074e-4ec2-9e57-944fccc2f709",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.689941Z",
"display_name": "Контакт №61",
"gentime": 1568794284695147520,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/61/256.png"
},
"jid": "d-2c7f407d-e5ca-4b3c-b70e-6422bbd1d384",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.646199Z",
"display_name": "Контакт №62",
"gentime": 1568794284649596928,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/62/256.png"
},
"jid": "d-6a2dae29-e089-49ee-b33f-337639723644",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.597986Z",
"display_name": "Контакт №63",
"gentime": 1568794284603658752,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/63/256.png"
},
"jid": "d-d72a5a5e-18ec-4dee-b72b-c5479a1c2b19",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.581909Z",
"display_name": "Контакт №64",
"gentime": 1568794284585609216,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/64/256.png"
},
"jid": "d-e0c1d056-fa2e-4925-88d2-c5c97b1332b8",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.527176Z",
"display_name": "Контакт №65",
"gentime": 1568794284539417344,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/65/256.png"
},
"jid": "d-e52db7dd-7154-47f6-97b4-1d0805733400",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.474873Z",
"display_name": "Контакт №66",
"gentime": 1568794284483898624,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/66/256.png"
},
"jid": "d-bb444faa-b42f-40b0-963b-fa699295db3a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.365277Z",
"display_name": "Контакт №67",
"gentime": 1568794284372427008,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/67/256.png"
},
"jid": "d-ada990ee-64f9-457d-9ec2-721b530cbfd2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.192348Z",
"display_name": "Контакт №68",
"gentime": 1568794284197538304,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/68/256.png"
},
"jid": "d-25a29687-337d-4494-a1d9-38ccbb5ab8b6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.130239Z",
"display_name": "Контакт №69",
"gentime": 1568794284166652416,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/69/256.png"
},
"jid": "d-a7e4b1c1-95fd-4664-9417-eca2c817913c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:24.054797Z",
"display_name": "Контакт №70",
"gentime": 1568794284059045632,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/70/256.png"
},
"jid": "d-d2c287ae-e5b3-4fb3-9824-c6f20ee311e4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:23.957341Z",
"display_name": "Контакт №71",
"gentime": 1568794283975901952,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/71/256.png"
},
"jid": "d-5fdf262e-4a8e-4348-a3ca-193056b18b82",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:23.796355Z",
"display_name": "Контакт №72",
"gentime": 1568794283917882880,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/72/256.png"
},
"jid": "d-a4015732-6e06-428d-9074-35551d0cd760",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:23.763008Z",
"display_name": "Контакт №73",
"gentime": 1568794283766488064,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/73/256.png"
},
"jid": "d-a00129fc-2efc-40be-8d97-61f63a3fe93e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:23.697778Z",
"display_name": "Контакт №74",
"gentime": 1568794283702464512,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/74/256.png"
},
"jid": "d-3c534253-42d8-4e25-8a7e-aada76408832",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:23.626548Z",
"display_name": "Контакт №75",
"gentime": 1568794283631550208,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/75/256.png"
},
"jid": "d-50bc59d2-9fa0-4c90-9af6-05ce0dd2531f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:23.592575Z",
"display_name": "Контакт №76",
"gentime": 1568794283600637696,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/76/256.png"
},
"jid": "d-3aadaecc-b062-4614-b03f-57b81ddb7ece",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.923444Z",
"display_name": "Контакт №77",
"gentime": 1568794282933649920,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/77/256.png"
},
"jid": "d-857e533d-5a46-4b89-b0be-6fc155bef648",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.894792Z",
"display_name": "Контакт №78",
"gentime": 1568794282896904448,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/78/256.png"
},
"jid": "d-2f413afa-efff-465c-98e7-3398dc143951",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.882932Z",
"display_name": "Контакт №79",
"gentime": 1568794282884876288,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/79/256.png"
},
"jid": "d-57c1b204-0118-4c90-917a-259c025d9e60",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.869732Z",
"display_name": "Контакт №80",
"gentime": 1568794282871880960,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/80/256.png"
},
"jid": "d-4cf6f092-a056-45c7-8f8d-295ae211277c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.841143Z",
"display_name": "Контакт №81",
"gentime": 1568794282850067712,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/81/256.png"
},
"jid": "d-004e4053-ad50-4b24-9619-17e7b1c39d84",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.812128Z",
"display_name": "Контакт №82",
"gentime": 1568794282815664896,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/82/256.png"
},
"jid": "d-e91a67bf-6009-4db5-99f3-1f2f6e0e0f2b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.781273Z",
"display_name": "Контакт №83",
"gentime": 1568794282785553664,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/83/256.png"
},
"jid": "d-92a684de-0512-4e66-a286-ca27f392853a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.748185Z",
"display_name": "Контакт №84",
"gentime": 1568794282751257856,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/84/256.png"
},
"jid": "d-d316412e-993c-476d-8752-213495c53e69",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.725993Z",
"display_name": "Контакт №85",
"gentime": 1568794282731114496,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/85/256.png"
},
"jid": "d-51e42b49-1e7e-405b-9aa0-dcc47c3f8cfb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.688075Z",
"display_name": "Контакт №86",
"gentime": 1568794282689303808,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/86/256.png"
},
"jid": "d-98c9f7be-fa5a-426e-b5d9-ca9b0128f173",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.658089Z",
"display_name": "Контакт №87",
"gentime": 1568794282661904128,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/87/256.png"
},
"jid": "d-50a86a82-b0ea-4504-b639-ba1388096393",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.610529Z",
"display_name": "Контакт №88",
"gentime": 1568794282623737600,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/88/256.png"
},
"jid": "d-df061d86-facb-40d2-af8c-e323662faaab",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.576288Z",
"display_name": "Контакт №89",
"gentime": 1568794282580524800,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/89/256.png"
},
"jid": "d-f5de1fad-29f7-42ee-a84b-72e45fa4267b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.515209Z",
"display_name": "Контакт №90",
"gentime": 1568794282521571072,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/90/256.png"
},
"jid": "d-ea4a1139-bb63-45ae-ab0c-031fce92a80c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.481754Z",
"display_name": "Контакт №91",
"gentime": 1568794282487336704,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/91/256.png"
},
"jid": "d-5d6ccc46-0f5e-451b-89e7-c2796f0512e8",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.461363Z",
"display_name": "Контакт №92",
"gentime": 1568794282463123456,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/92/256.png"
},
"jid": "d-317ee099-f92d-4c98-87f4-d7ac095229b3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.443475Z",
"display_name": "Контакт №93",
"gentime": 1568794282444788480,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/93/256.png"
},
"jid": "d-8d35bd51-3caa-49f4-9f04-a65d1b7d802b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.426909Z",
"display_name": "Контакт №94",
"gentime": 1568794282429321984,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/94/256.png"
},
"jid": "d-9c6cb082-5643-4f24-8ed9-02044c0c3621",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.397648Z",
"display_name": "Контакт №95",
"gentime": 1568794282404160768,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/95/256.png"
},
"jid": "d-caacdf41-6ff7-4c50-b2be-8dcf7ffc18c2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.349232Z",
"display_name": "Контакт №96",
"gentime": 1568794282358269184,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/96/256.png"
},
"jid": "d-37d4241a-067a-422c-9991-1d1a0eb57ca3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.283360Z",
"display_name": "Контакт №97",
"gentime": 1568794282293372928,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/97/256.png"
},
"jid": "d-2ad11cc4-da63-43e6-81a9-bf9feb968856",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.162136Z",
"display_name": "Контакт №98",
"gentime": 1568794282178979584,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/98/256.png"
},
"jid": "d-4a600e64-cca3-44f3-b007-a0bbdea08e06",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.100431Z",
"display_name": "Контакт №99",
"gentime": 1568794282126628352,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/99/256.png"
},
"jid": "d-683fd232-1f7a-40f7-a6bd-40a2eb304286",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.035750Z",
"display_name": "Контакт №100",
"gentime": 1568794282049606400,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/00/256.png"
},
"jid": "d-678710e7-18b7-4bd8-9616-7319160772f8",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:22.016053Z",
"display_name": "Контакт №101",
"gentime": 1568794282018368000,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/01/256.png"
},
"jid": "d-b341d7d6-ed6b-4cf6-bed3-b09c6f0a725f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.988788Z",
"display_name": "Контакт №102",
"gentime": 1568794281992855552,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/02/256.png"
},
"jid": "d-3b89e815-d5a9-4cb9-a663-4a9bc7789fe3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.942995Z",
"display_name": "Контакт №103",
"gentime": 1568794281948783872,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/03/256.png"
},
"jid": "d-b1d03e6b-331c-45f4-ae56-e2cdfcdca55a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.901337Z",
"display_name": "Контакт №104",
"gentime": 1568794281918540032,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/04/256.png"
},
"jid": "d-adc9ccb6-ded0-40b0-96af-aeb4d2cbefcd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.849836Z",
"display_name": "Контакт №105",
"gentime": 1568794281857900288,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/05/256.png"
},
"jid": "d-871151cc-4419-4cc9-95d8-21e287da3dfe",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.157897Z",
"display_name": "Контакт №106",
"gentime": 1568794281804096512,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/06/256.png"
},
"jid": "d-647c07ac-1b07-41f0-b8b5-ba5b62779889",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.095863Z",
"display_name": "Контакт №107",
"gentime": 1568794281120675584,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/07/256.png"
},
"jid": "d-33351e4b-3db9-4d82-b93b-eb7c90340015",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:21.034463Z",
"display_name": "Контакт №108",
"gentime": 1568794281073563136,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/08/256.png"
},
"jid": "d-9a889fe8-e42e-4467-9e4e-75369cdc59c4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.971589Z",
"display_name": "Контакт №109",
"gentime": 1568794280973956608,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/09/256.png"
},
"jid": "d-89d2d3a0-163c-4e93-9fd4-fda3155d8f32",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.941033Z",
"display_name": "Контакт №110",
"gentime": 1568794280946394368,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/10/256.png"
},
"jid": "d-5d2a5ffa-0884-402d-bb13-4fe9cfe93679",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.893448Z",
"display_name": "Контакт №111",
"gentime": 1568794280902946816,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/11/256.png"
},
"jid": "d-37679f95-0656-483c-90a7-a0b4e1eeca65",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.872022Z",
"display_name": "Контакт №112",
"gentime": 1568794280876029952,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/12/256.png"
},
"jid": "d-b692a0b4-9830-444b-b914-6f8051ead3d1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.843567Z",
"display_name": "Контакт №113",
"gentime": 1568794280844611584,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/13/256.png"
},
"jid": "d-9ec8e359-f23e-4ffd-aa94-24c2f380053e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.824197Z",
"display_name": "Контакт №114",
"gentime": 1568794280828735488,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/14/256.png"
},
"jid": "d-7dd205f4-b26a-48c7-bc4c-2feea1647ee6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.781583Z",
"display_name": "Контакт №115",
"gentime": 1568794280787597824,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/15/256.png"
},
"jid": "d-8efb3a7b-e983-4f13-9aca-261a0dac7eeb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.759407Z",
"display_name": "Контакт №116",
"gentime": 1568794280762214400,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/16/256.png"
},
"jid": "d-36a70903-be53-470b-bd48-e40f976ef275",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.730571Z",
"display_name": "Контакт №117",
"gentime": 1568794280735213312,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/17/256.png"
},
"jid": "d-b09b5491-0172-46cb-9142-b7bc0f294d3a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.624373Z",
"display_name": "Контакт №118",
"gentime": 1568794280636164352,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/18/256.png"
},
"jid": "d-ed914154-5646-421e-998f-2b6036ee8583",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.583726Z",
"display_name": "Контакт №205",
"gentime": 1568794280587348736,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/05/256.png"
},
"jid": "d-aae0d6e5-719a-4306-ad2a-b998eb71ce9b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.558205Z",
"display_name": "Контакт №206",
"gentime": 1568794280562827264,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/06/256.png"
},
"jid": "d-935ef749-5d27-4e7c-9ffc-c1b8b3e62cdb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.521511Z",
"display_name": "Контакт №207",
"gentime": 1568794280530490624,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/07/256.png"
},
"jid": "d-266bb4ed-00c3-43ab-a2a2-bc2412bc8d54",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.426641Z",
"display_name": "Контакт №208",
"gentime": 1568794280440532480,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/08/256.png"
},
"jid": "d-3655a955-3934-474d-8b78-24b6ff0f2717",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.355409Z",
"display_name": "Контакт №209",
"gentime": 1568794280358955008,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/09/256.png"
},
"jid": "d-6ad30b38-58bf-4ce6-94a0-eb4f58f5c2ef",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.322430Z",
"display_name": "Контакт №210",
"gentime": 1568794280330538240,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/10/256.png"
},
"jid": "d-428b8323-0b2e-4421-9f21-e4e6543ee7c1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.235222Z",
"display_name": "Контакт №211",
"gentime": 1568794280240161792,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/11/256.png"
},
"jid": "d-fc8be418-2f08-429f-8f69-4c5fa227040b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.165070Z",
"display_name": "Контакт №212",
"gentime": 1568794280188470784,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/12/256.png"
},
"jid": "d-85350496-98b4-44af-9895-d524c24cb8d1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.101333Z",
"display_name": "Контакт №213",
"gentime": 1568794280118455808,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/13/256.png"
},
"jid": "d-e29e45d5-fa4b-46e1-82c6-67e035bdb228",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:20.024251Z",
"display_name": "Контакт №214",
"gentime": 1568794280034536704,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/14/256.png"
},
"jid": "d-bfa5b509-736e-4bf0-88a3-9ad9cc56f4e4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.955454Z",
"display_name": "Контакт №215",
"gentime": 1568794279964752896,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/15/256.png"
},
"jid": "d-ffe069b1-2547-4189-9b3e-0b13efa21d3c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.837697Z",
"display_name": "Контакт №216",
"gentime": 1568794279861880576,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/16/256.png"
},
"jid": "d-329d3aed-5751-43a3-a713-4235985fd8a5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.771523Z",
"display_name": "Контакт №217",
"gentime": 1568794279777038336,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/17/256.png"
},
"jid": "d-e626c3c4-6681-4b1b-abea-46e1089941ec",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.718876Z",
"display_name": "Контакт №218",
"gentime": 1568794279729627648,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/18/256.png"
},
"jid": "d-16e7c2a0-c584-490e-8712-3962af9d6540",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.688391Z",
"display_name": "Контакт №219",
"gentime": 1568794279693009664,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/19/256.png"
},
"jid": "d-94d25c0e-03bf-4028-bf93-b4a27a2e99a7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.633197Z",
"display_name": "Контакт №220",
"gentime": 1568794279645645568,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/20/256.png"
},
"jid": "d-709063e7-80a3-4b07-8475-ab79d0853248",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.558287Z",
"display_name": "Контакт №221",
"gentime": 1568794279582524928,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/21/256.png"
},
"jid": "d-9a8c991b-76dc-495e-af10-82a45cd1cf8c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.491256Z",
"display_name": "Контакт №222",
"gentime": 1568794279498470144,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/22/256.png"
},
"jid": "d-b7ec032f-93bb-49cb-958a-76f212ec267a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.392266Z",
"display_name": "Контакт №223",
"gentime": 1568794279410140416,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/23/256.png"
},
"jid": "d-e1a21c0b-5091-4e9a-b0ce-0c28be2d4a80",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.291188Z",
"display_name": "Контакт №224",
"gentime": 1568794279301879296,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/24/256.png"
},
"jid": "d-a08a1305-4ee0-43b3-b84d-919308bb18ae",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.241696Z",
"display_name": "Контакт №225",
"gentime": 1568794279249162752,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/25/256.png"
},
"jid": "d-406a0f5d-41c3-4aa5-b4f9-bd774d92a25c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.202141Z",
"display_name": "Контакт №226",
"gentime": 1568794279208904960,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/26/256.png"
},
"jid": "d-89288801-1772-422f-b363-ecc8bd32be6e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.139353Z",
"display_name": "Контакт №227",
"gentime": 1568794279145346304,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/27/256.png"
},
"jid": "d-dbfa9ffa-aad5-4aaf-8fd1-52263a656f0e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:19.062236Z",
"display_name": "Контакт №228",
"gentime": 1568794279072445440,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/28/256.png"
},
"jid": "d-7df26efa-8ac2-4dc9-b5b2-ad1b6e3e0dbb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.997235Z",
"display_name": "Контакт №229",
"gentime": 1568794279006972672,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/29/256.png"
},
"jid": "d-511eb75b-11b2-4e44-a28a-71573e9dc35b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.942301Z",
"display_name": "Контакт №230",
"gentime": 1568794278971132928,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/30/256.png"
},
"jid": "d-c77fa026-03a4-483a-bf7f-64eb0ce6e37b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.839164Z",
"display_name": "Контакт №231",
"gentime": 1568794278842526208,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/31/256.png"
},
"jid": "d-64dcb673-d0c3-4555-9231-debe0fb14827",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.745758Z",
"display_name": "Контакт №232",
"gentime": 1568794278770337024,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/32/256.png"
},
"jid": "d-c296f683-0042-4bc2-a8b8-42d6f8e2c9b2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.660936Z",
"display_name": "Контакт №233",
"gentime": 1568794278676605696,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/33/256.png"
},
"jid": "d-71df198e-67f9-422b-859d-87f587ba5d83",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.589420Z",
"display_name": "Контакт №234",
"gentime": 1568794278595059200,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/34/256.png"
},
"jid": "d-ce914701-9c10-4f39-aa2b-76e92e8cd0f9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.545988Z",
"display_name": "Контакт №235",
"gentime": 1568794278555868928,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/35/256.png"
},
"jid": "d-7195d3de-c5fb-4084-adeb-3013e1f324fc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.406291Z",
"display_name": "Контакт №236",
"gentime": 1568794278416333824,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/36/256.png"
},
"jid": "d-60fbda77-6ce1-41f4-926a-fefa10f43778",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.359703Z",
"display_name": "Контакт №237",
"gentime": 1568794278364714496,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/37/256.png"
},
"jid": "d-43f00549-6a01-4b4a-9228-f557cf46efc9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.048109Z",
"display_name": "Контакт №238",
"gentime": 1568794278056754176,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/38/256.png"
},
"jid": "d-894f5d07-fd72-46f5-a170-ccc3f72c9cde",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:18.003741Z",
"display_name": "Контакт №239",
"gentime": 1568794278008315904,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/39/256.png"
},
"jid": "d-62096aeb-4eca-4afa-aecf-d50e0c1f5192",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.978175Z",
"display_name": "Контакт №240",
"gentime": 1568794277983641600,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/40/256.png"
},
"jid": "d-dea30887-dcc3-4491-9f43-e87eb59a3cc4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.934258Z",
"display_name": "Контакт №241",
"gentime": 1568794277937838848,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/41/256.png"
},
"jid": "d-0d30007b-6913-44f1-a554-25aecfdee5c0",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.914491Z",
"display_name": "Контакт №242",
"gentime": 1568794277917182720,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/42/256.png"
},
"jid": "d-d1a9e96f-65f7-4a1f-af3a-76303f87214a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.865629Z",
"display_name": "Контакт №243",
"gentime": 1568794277869471488,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/43/256.png"
},
"jid": "d-9f0dc2f4-1a6c-4746-ad5b-1c01fe00f186",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.833002Z",
"display_name": "Контакт №244",
"gentime": 1568794277838427392,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/44/256.png"
},
"jid": "d-54a405df-d8ec-4cc4-801e-324079972ff1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.807268Z",
"display_name": "Контакт №245",
"gentime": 1568794277814079744,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/45/256.png"
},
"jid": "d-0625439f-2a9d-4008-b14e-fbfb69b637f3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.774760Z",
"display_name": "Контакт №246",
"gentime": 1568794277787300864,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/46/256.png"
},
"jid": "d-e834b072-92bb-4025-b9ce-a82a5dfde4ad",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.494783Z",
"display_name": "Контакт №247",
"gentime": 1568794277520317696,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/47/256.png"
},
"jid": "d-d81652a2-0b89-4c34-9247-82b38bf51b8d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.407643Z",
"display_name": "Контакт №248",
"gentime": 1568794277415233280,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/48/256.png"
},
"jid": "d-7afd8427-72b8-47c8-94c5-c89b89595c5f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.354770Z",
"display_name": "Контакт №249",
"gentime": 1568794277371809280,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/49/256.png"
},
"jid": "d-e54ec05e-13e2-4eb1-a93c-58240f9deb8f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.281712Z",
"display_name": "Контакт №250",
"gentime": 1568794277290963712,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/50/256.png"
},
"jid": "d-0a862057-599e-4d68-8c6f-fb6b78083288",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.255622Z",
"display_name": "Контакт №251",
"gentime": 1568794277258577152,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/51/256.png"
},
"jid": "d-1e7dbf45-b91c-4b37-be9b-541696d719cc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.189225Z",
"display_name": "Контакт №252",
"gentime": 1568794277193645312,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/52/256.png"
},
"jid": "d-cbd99201-729b-41db-998a-9f8a430cf99c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.146348Z",
"display_name": "Контакт №253",
"gentime": 1568794277157498368,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/53/256.png"
},
"jid": "d-d31911b1-07c4-47a1-8a38-3d88922ecfb6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.109146Z",
"display_name": "Контакт №254",
"gentime": 1568794277118170368,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/54/256.png"
},
"jid": "d-0538970e-f4bd-4c6d-b046-8361621e9d49",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.046634Z",
"display_name": "Контакт №255",
"gentime": 1568794277050251008,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/55/256.png"
},
"jid": "d-af82a3ff-d057-450e-8a53-e41c0a968bfe",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:17.024710Z",
"display_name": "Контакт №256",
"gentime": 1568794277030308608,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/56/256.png"
},
"jid": "d-694a8c7e-f9f1-419c-ac9c-dc61323de742",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.995944Z",
"display_name": "Контакт №257",
"gentime": 1568794276999244288,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/57/256.png"
},
"jid": "d-2051efdc-d33c-4d93-b4c9-964dedf4b6e4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.970336Z",
"display_name": "Контакт №258",
"gentime": 1568794276977787136,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/58/256.png"
},
"jid": "d-d7b449f0-57ee-48ad-8d58-76a310534542",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.448301Z",
"display_name": "Контакт №259",
"gentime": 1568794276465323520,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/59/256.png"
},
"jid": "d-de9fee47-7dee-4aa5-bee1-cd1d3ee016f0",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.390105Z",
"display_name": "Контакт №260",
"gentime": 1568794276409942272,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/60/256.png"
},
"jid": "d-12895120-4b96-4a97-b571-daaeae5c0458",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.350691Z",
"display_name": "Контакт №261",
"gentime": 1568794276358688768,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/61/256.png"
},
"jid": "d-033f57c8-b4d3-423f-8b4b-8965905546c8",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.295569Z",
"display_name": "Контакт №262",
"gentime": 1568794276300018176,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/62/256.png"
},
"jid": "d-5694fb21-7c7a-4dd1-b6e5-810da8dd3f6e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.200531Z",
"display_name": "Контакт №263",
"gentime": 1568794276221452544,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/63/256.png"
},
"jid": "d-d2e79b15-ae99-4a96-9297-34cac6804117",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.159365Z",
"display_name": "Контакт №264",
"gentime": 1568794276162492416,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/64/256.png"
},
"jid": "d-7decaedb-d97f-430f-a3a3-bbb3732f0b18",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.068249Z",
"display_name": "Контакт №265",
"gentime": 1568794276077600000,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/65/256.png"
},
"jid": "d-7694d797-2959-4e51-bc67-d95a2e89e100",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:16.022383Z",
"display_name": "Контакт №266",
"gentime": 1568794276033485312,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/66/256.png"
},
"jid": "d-957ab5af-97b3-4b12-8e5c-8b6ddfe00fa7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.981125Z",
"display_name": "Контакт №267",
"gentime": 1568794275993987840,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/67/256.png"
},
"jid": "d-e2749bbf-72cc-4296-b7ba-5693c6358c05",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.937519Z",
"display_name": "Контакт №268",
"gentime": 1568794275946243584,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/68/256.png"
},
"jid": "d-085dea6c-b277-4791-a0d0-cbbc8d50e208",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.863414Z",
"display_name": "Контакт №269",
"gentime": 1568794275877410304,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/69/256.png"
},
"jid": "d-03605897-506e-40c9-87f7-db84526f61bc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.833041Z",
"display_name": "Контакт №270",
"gentime": 1568794275842493952,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/70/256.png"
},
"jid": "d-11bac61c-e91e-45b9-9f09-78eb167d6c6e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.762405Z",
"display_name": "Контакт №271",
"gentime": 1568794275766254592,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/71/256.png"
},
"jid": "d-de32564a-b4a9-4393-8a58-9ede30bcc256",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.737986Z",
"display_name": "Контакт №272",
"gentime": 1568794275743192064,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/72/256.png"
},
"jid": "d-5b8413b8-c18f-453c-ba34-e5e2c031f2a9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.704074Z",
"display_name": "Контакт №273",
"gentime": 1568794275709349888,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/73/256.png"
},
"jid": "d-5700101e-fe08-4280-a8b0-bd6eb4c014a6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.675329Z",
"display_name": "Контакт №274",
"gentime": 1568794275686815744,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/74/256.png"
},
"jid": "d-fbd391bd-450c-4536-a9c1-6315f3c131b5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.630258Z",
"display_name": "Контакт №275",
"gentime": 1568794275631223552,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/75/256.png"
},
"jid": "d-de5e5e19-e895-43fc-8d90-297eb185a467",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.609836Z",
"display_name": "Контакт №276",
"gentime": 1568794275611126528,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/76/256.png"
},
"jid": "d-4d5b71e0-a692-4523-bad5-7c7da02a770c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.595809Z",
"display_name": "Контакт №277",
"gentime": 1568794275597414656,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/77/256.png"
},
"jid": "d-a50b4d22-55ea-4a47-bf93-9c8245d88d70",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.569258Z",
"display_name": "Контакт №278",
"gentime": 1568794275577975040,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/78/256.png"
},
"jid": "d-a9aaf587-cfc9-4f4c-aaa1-daaa69813c5a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.524605Z",
"display_name": "Контакт №279",
"gentime": 1568794275528686336,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/79/256.png"
},
"jid": "d-6b3dbc20-3a72-4acf-b90d-3e606bbefcdf",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.481557Z",
"display_name": "Контакт №280",
"gentime": 1568794275486346752,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/80/256.png"
},
"jid": "d-0823c980-28a3-4c36-9e84-e0ecf7072cb4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.439475Z",
"display_name": "Контакт №281",
"gentime": 1568794275456415744,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/81/256.png"
},
"jid": "d-da8c61d0-cac5-4011-b261-5b27069af1c6",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.382089Z",
"display_name": "Контакт №282",
"gentime": 1568794275386411520,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/82/256.png"
},
"jid": "d-8cf89fac-1fed-418c-920f-e293771d0bfd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.337072Z",
"display_name": "Контакт №283",
"gentime": 1568794275343762432,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/83/256.png"
},
"jid": "d-239d8737-9f75-4b1e-aaa3-6f2cbcecfe28",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.287142Z",
"display_name": "Контакт №284",
"gentime": 1568794275292630016,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/84/256.png"
},
"jid": "d-3d4b94ae-e77d-40de-bb3d-b5df47ddac44",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.213546Z",
"display_name": "Контакт №285",
"gentime": 1568794275222520576,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/85/256.png"
},
"jid": "d-05e4779b-1256-45de-a32c-3bedf00c822d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:15.168722Z",
"display_name": "Контакт №286",
"gentime": 1568794275175884800,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/86/256.png"
},
"jid": "d-61548f8e-7ced-4747-b17d-86901f75282e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.790249Z",
"display_name": "Контакт №287",
"gentime": 1568794274797294080,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/87/256.png"
},
"jid": "d-59e03ba7-ea58-40ac-8428-0359f94c9ccd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.751377Z",
"display_name": "Контакт №288",
"gentime": 1568794274756332544,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/88/256.png"
},
"jid": "d-ea9aea72-b31d-4ea8-a462-e161e1bee0e5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.709387Z",
"display_name": "Контакт №289",
"gentime": 1568794274714119936,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/89/256.png"
},
"jid": "d-b79412b5-119d-4819-9516-886f0b5a5037",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.680568Z",
"display_name": "Контакт №290",
"gentime": 1568794274684462336,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/90/256.png"
},
"jid": "d-cd9f1371-1bd8-4649-bb81-140b8ff44913",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.642377Z",
"display_name": "Контакт №291",
"gentime": 1568794274648240128,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/91/256.png"
},
"jid": "d-8f06a2df-0cc8-4a1a-ba89-e4c752b63504",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.589487Z",
"display_name": "Контакт №292",
"gentime": 1568794274593478656,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/92/256.png"
},
"jid": "d-43cf2b59-5c08-4510-a627-fd16cfd47390",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.531514Z",
"display_name": "Контакт №293",
"gentime": 1568794274543252480,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/93/256.png"
},
"jid": "d-577a1730-3b7e-46f3-83ce-2561873759cb",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:14.009673Z",
"display_name": "Контакт №294",
"gentime": 1568794274012324864,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/94/256.png"
},
"jid": "d-409abc83-5a0e-46d2-aa6b-16c83a6af13b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.966667Z",
"display_name": "Контакт №295",
"gentime": 1568794273986306816,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/95/256.png"
},
"jid": "d-fa205cae-79d2-4317-aba7-20fcbceb19a3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.931809Z",
"display_name": "Контакт №296",
"gentime": 1568794273941816832,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/96/256.png"
},
"jid": "d-3b09b1d5-773c-4019-9e41-eff1c7246cb2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.907698Z",
"display_name": "Контакт №297",
"gentime": 1568794273910678016,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/97/256.png"
},
"jid": "d-7c2f8918-542c-478e-826a-41caae1f44c2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.873156Z",
"display_name": "Контакт №298",
"gentime": 1568794273878559744,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/98/256.png"
},
"jid": "d-637c626a-c8fb-4598-9a9c-d9fff8de45f4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.829003Z",
"display_name": "Контакт №299",
"gentime": 1568794273839900672,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/99/256.png"
},
"jid": "d-abc5b8b1-9aca-43fb-ad09-ee2cb0c1eeca",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.086951Z",
"display_name": "Контакт №300",
"gentime": 1568794273098333696,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/00/256.png"
},
"jid": "d-fbe961e4-0808-497b-a358-23e857ed7517",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.059768Z",
"display_name": "Контакт №301",
"gentime": 1568794273062733824,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/01/256.png"
},
"jid": "d-4610b826-d6dd-456e-a852-50e4417f4130",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:13.018062Z",
"display_name": "Контакт №302",
"gentime": 1568794273038192384,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/02/256.png"
},
"jid": "d-08ba13b9-903d-4733-836a-c1f95157dbd9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.979707Z",
"display_name": "Контакт №303",
"gentime": 1568794272984516352,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/03/256.png"
},
"jid": "d-c8982182-84b9-422c-b620-44b3c7a09f31",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.918738Z",
"display_name": "Контакт №304",
"gentime": 1568794272950689536,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/04/256.png"
},
"jid": "d-a2ef9558-e965-450c-8d96-d51d807ef808",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.888977Z",
"display_name": "Контакт №305",
"gentime": 1568794272891695616,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/05/256.png"
},
"jid": "d-54a646b6-ea40-4784-9a43-67c33ac87ef1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.838158Z",
"display_name": "Контакт №306",
"gentime": 1568794272857837056,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/06/256.png"
},
"jid": "d-e7415145-dbb7-4b0d-a986-a8831891d3f2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.799752Z",
"display_name": "Контакт №307",
"gentime": 1568794272808145920,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/07/256.png"
},
"jid": "d-a2115b28-f646-4042-b91c-50acd5db4820",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.744651Z",
"display_name": "Контакт №308",
"gentime": 1568794272753609728,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/08/256.png"
},
"jid": "d-f04341ac-a870-4eda-9ea1-7858a95460ec",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.384760Z",
"display_name": "Контакт №309",
"gentime": 1568794272709704704,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/09/256.png"
},
"jid": "d-8e8b100b-7c65-4c64-9f43-ebd2be0a990a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.354933Z",
"display_name": "Контакт №310",
"gentime": 1568794272367540480,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/10/256.png"
},
"jid": "d-d88a0a5c-953a-4fa6-8087-170e478bed43",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.241504Z",
"display_name": "Контакт №311",
"gentime": 1568794272292620544,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/11/256.png"
},
"jid": "d-3797e44a-a89d-4e61-920d-40b70f726c00",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.161428Z",
"display_name": "Контакт №312",
"gentime": 1568794272164812544,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/12/256.png"
},
"jid": "d-6bd21e17-6211-47af-939f-26d6a23edf15",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.094601Z",
"display_name": "Контакт №313",
"gentime": 1568794272132552704,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/13/256.png"
},
"jid": "d-01050f10-b7ef-4dca-ac30-794d3c48e423",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:12.031765Z",
"display_name": "Контакт №314",
"gentime": 1568794272037111040,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/14/256.png"
},
"jid": "d-3988f6e3-e839-4a29-8111-8d9cb489ff32",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.934845Z",
"display_name": "Контакт №315",
"gentime": 1568794271943451904,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/15/256.png"
},
"jid": "d-bd72c3d4-60ce-4e88-b0d2-47987aec2ab7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.889400Z",
"display_name": "Контакт №316",
"gentime": 1568794271893235968,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/16/256.png"
},
"jid": "d-0485ed1c-7398-41e4-b67b-ddffab9b1ac3",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.853394Z",
"display_name": "Контакт №317",
"gentime": 1568794271861672704,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/17/256.png"
},
"jid": "d-bee6ea74-de84-4a59-834a-358f1c7d135d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.750161Z",
"display_name": "Контакт №318",
"gentime": 1568794271758845184,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/18/256.png"
},
"jid": "d-00b902c0-e21d-431b-8cf5-76c10308939d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.728122Z",
"display_name": "Контакт №319",
"gentime": 1568794271731030528,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/19/256.png"
},
"jid": "d-b1035830-6e6a-4a6c-900e-0b094a197665",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.696208Z",
"display_name": "Контакт №320",
"gentime": 1568794271707345920,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/20/256.png"
},
"jid": "d-ad2347df-f677-499c-b6f4-3b262d7f4b8b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.329550Z",
"display_name": "Контакт №321",
"gentime": 1568794271340342016,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/21/256.png"
},
"jid": "d-161336c7-58e8-49cb-9b39-583b62ff32b4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.293963Z",
"display_name": "Контакт №322",
"gentime": 1568794271297376000,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/22/256.png"
},
"jid": "d-c3dfe478-c47a-4f20-8e47-1915e48bceca",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.243314Z",
"display_name": "Контакт №323",
"gentime": 1568794271250946816,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/23/256.png"
},
"jid": "d-bb98c924-d225-4b0d-8dba-d352171cd913",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.195902Z",
"display_name": "Контакт №324",
"gentime": 1568794271206651648,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/24/256.png"
},
"jid": "d-7d4c91dc-4340-4112-aaab-29732fbcdf94",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.131109Z",
"display_name": "Контакт №325",
"gentime": 1568794271140924160,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/25/256.png"
},
"jid": "d-4b1f4a3e-4c35-4fbd-bec0-7cd73ded7a6e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.103363Z",
"display_name": "Контакт №326",
"gentime": 1568794271109292288,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/26/256.png"
},
"jid": "d-5dcdf750-b4c9-4906-9305-d0d3b574e7e5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.081848Z",
"display_name": "Контакт №327",
"gentime": 1568794271085564416,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/27/256.png"
},
"jid": "d-0d2c7df3-4283-4b9a-80a9-d91112e5d341",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.053004Z",
"display_name": "Контакт №328",
"gentime": 1568794271055385856,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/28/256.png"
},
"jid": "d-b9f4e0de-00ff-49ca-ac96-fe96b2c6fe0f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.030544Z",
"display_name": "Контакт №329",
"gentime": 1568794271035826688,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/29/256.png"
},
"jid": "d-0aa82f9a-cd2b-46f7-85cd-110fc13e7252",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:11.011832Z",
"display_name": "Контакт №330",
"gentime": 1568794271014918144,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/30/256.png"
},
"jid": "d-a0cd354d-1dae-4d01-94c1-e1f6612f5eb8",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.972226Z",
"display_name": "Контакт №331",
"gentime": 1568794270985191680,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/31/256.png"
},
"jid": "d-fa0b4b6f-c3cd-416d-a897-6ed5b5fcf18f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.925613Z",
"display_name": "Контакт №332",
"gentime": 1568794270940508672,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/32/256.png"
},
"jid": "d-a4a09995-e28a-4940-a690-9aaa8b4fe60c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.892838Z",
"display_name": "Контакт №333",
"gentime": 1568794270896540672,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/33/256.png"
},
"jid": "d-60f197c9-4ae9-47cf-80a6-9a7b33faa392",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.861726Z",
"display_name": "Контакт №334",
"gentime": 1568794270870370816,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/34/256.png"
},
"jid": "d-1eef5936-1273-40b4-a342-b58706ffb68b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.846316Z",
"display_name": "Контакт №335",
"gentime": 1568794270848333568,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/35/256.png"
},
"jid": "d-b8aa5d93-b500-4966-912f-ed417a50a602",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.826686Z",
"display_name": "Контакт №336",
"gentime": 1568794270833790208,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/36/256.png"
},
"jid": "d-62a174c2-85ae-4eec-ae46-b0a4c6d8f214",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.773324Z",
"display_name": "Контакт №337",
"gentime": 1568794270778430720,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/37/256.png"
},
"jid": "d-75d698ea-3ec5-4950-bd3a-ffed06d4ca1b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.721283Z",
"display_name": "Контакт №338",
"gentime": 1568794270728267776,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/38/256.png"
},
"jid": "d-3849c2b2-340d-40b5-9d64-f24dcdd2e2f1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.681413Z",
"display_name": "Контакт №339",
"gentime": 1568794270687967232,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/39/256.png"
},
"jid": "d-3963a6f9-c104-4129-8ed9-7a04de1635a4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.625535Z",
"display_name": "Контакт №340",
"gentime": 1568794270629996800,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/40/256.png"
},
"jid": "d-4cc922aa-8ee3-4d5f-8d3c-d76408f2633c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.581852Z",
"display_name": "Контакт №341",
"gentime": 1568794270590629376,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/41/256.png"
},
"jid": "d-2daf511c-616f-451c-a2bf-995938591a7c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.551331Z",
"display_name": "Контакт №342",
"gentime": 1568794270554964480,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/42/256.png"
},
"jid": "d-ca6c440c-f7b8-4f7c-81bc-a91a9e4b75fd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.510128Z",
"display_name": "Контакт №343",
"gentime": 1568794270514476800,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/43/256.png"
},
"jid": "d-6af65de4-ae72-4280-8e43-7bbc8f0e0a91",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.477446Z",
"display_name": "Контакт №344",
"gentime": 1568794270481197312,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/44/256.png"
},
"jid": "d-3dba227c-d3b6-4aae-adb8-7affe9c72ea5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.447431Z",
"display_name": "Контакт №345",
"gentime": 1568794270449929216,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/45/256.png"
},
"jid": "d-5d898a42-6dde-42d3-aad8-f1d59de5d68f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.418107Z",
"display_name": "Контакт №346",
"gentime": 1568794270423345408,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/46/256.png"
},
"jid": "d-94239212-2e22-4a69-a919-01733ab8129c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.373229Z",
"display_name": "Контакт №347",
"gentime": 1568794270386243584,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/47/256.png"
},
"jid": "d-cb77a229-e32e-470a-a95a-fd8fedd59722",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.080762Z",
"display_name": "Контакт №348",
"gentime": 1568794270308809728,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/48/256.png"
},
"jid": "d-b12704e9-231a-4038-a385-6d376e46092b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:10.049715Z",
"display_name": "Контакт №349",
"gentime": 1568794270052872448,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/49/256.png"
},
"jid": "d-160a1029-a321-44ee-914f-768ef104a8b4",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.957991Z",
"display_name": "Контакт №350",
"gentime": 1568794270018153216,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/50/256.png"
},
"jid": "d-369b5d5f-69ec-4471-af71-b7eae781030d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.885469Z",
"display_name": "Контакт №351",
"gentime": 1568794269932592896,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/51/256.png"
},
"jid": "d-d7a9a1c5-1769-4d55-9824-204ac601e05e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.852208Z",
"display_name": "Контакт №352",
"gentime": 1568794269854206720,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/52/256.png"
},
"jid": "d-b2d4330e-fa1c-40e3-af3d-4092834c1667",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:15:00.704379Z",
"display_name": "Контакт №401",
"gentime": 1568794500705619456,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/01/256.png"
},
"jid": "d-7edc1d06-0893-48ea-b8ce-26c40aafe64c",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.835401Z",
"display_name": "Контакт №353",
"gentime": 1568794269837830912,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/53/256.png"
},
"jid": "d-4be63395-fca2-41e4-9a84-e87b4da37ca5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.466671Z",
"display_name": "Контакт №354",
"gentime": 1568794269496358400,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/54/256.png"
},
"jid": "d-93c7bd97-5792-489c-845a-e3120460d61d",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.400421Z",
"display_name": "Контакт №355",
"gentime": 1568794269404087040,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/55/256.png"
},
"jid": "d-e974dcff-1d0b-4b63-88e9-aef9996bf149",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.347466Z",
"display_name": "Контакт №356",
"gentime": 1568794269348865280,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/56/256.png"
},
"jid": "d-f9fa876d-eb32-4da3-b9ad-2580f88979e2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.331915Z",
"display_name": "Контакт №357",
"gentime": 1568794269334234624,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/57/256.png"
},
"jid": "d-ee465741-a927-4021-afb2-c59c886756cc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.289765Z",
"display_name": "Контакт №358",
"gentime": 1568794269301988352,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/58/256.png"
},
"jid": "d-abfd366d-a980-4621-bade-9f5964561ed5",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.273753Z",
"display_name": "Контакт №359",
"gentime": 1568794269276315904,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/59/256.png"
},
"jid": "d-c8757039-1d92-4f24-9ece-1a410097a383",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.244921Z",
"display_name": "Контакт №360",
"gentime": 1568794269246961664,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/60/256.png"
},
"jid": "d-f6e62284-9e18-4e19-8caf-03817c44a757",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.216568Z",
"display_name": "Контакт №361",
"gentime": 1568794269218338816,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/61/256.png"
},
"jid": "d-6ea80544-3ed0-4cd4-b9b6-31a91fcfd46a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.192675Z",
"display_name": "Контакт №362",
"gentime": 1568794269196046080,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/62/256.png"
},
"jid": "d-e6ec8be3-6703-44af-970b-094bd81cb2af",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.167145Z",
"display_name": "Контакт №363",
"gentime": 1568794269169036032,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/63/256.png"
},
"jid": "d-aa5e1d7a-8e35-40e5-af17-2f7a87861f9b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.153818Z",
"display_name": "Контакт №364",
"gentime": 1568794269155784960,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/64/256.png"
},
"jid": "d-22973a08-533d-4a70-b9e4-10e458320cde",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.131582Z",
"display_name": "Контакт №365",
"gentime": 1568794269135214848,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/65/256.png"
},
"jid": "d-986cfc73-d687-4282-a918-0dfaecab94af",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.110382Z",
"display_name": "Контакт №366",
"gentime": 1568794269111654400,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/66/256.png"
},
"jid": "d-787d0c15-1bae-42b3-8d48-c7899985d738",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.095427Z",
"display_name": "Контакт №367",
"gentime": 1568794269098290432,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/67/256.png"
},
"jid": "d-00261105-889a-4c4e-9c66-2626a0e62cbd",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:09.075323Z",
"display_name": "Контакт №368",
"gentime": 1568794269077679872,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/68/256.png"
},
"jid": "d-bedd7616-1d88-4cd7-8119-734e4f69885e",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.934746Z",
"display_name": "Контакт №369",
"gentime": 1568794268938020608,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/69/256.png"
},
"jid": "d-4d77abe9-ebd2-43b4-9f2c-f1d9a9f572c9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.870937Z",
"display_name": "Контакт №370",
"gentime": 1568794268890065408,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/70/256.png"
},
"jid": "d-21e88ab9-3552-4662-b8c5-4b90b9e19426",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.807844Z",
"display_name": "Контакт №371",
"gentime": 1568794268817211648,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/71/256.png"
},
"jid": "d-d36ea329-9414-4d03-984d-a404156c1411",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.568428Z",
"display_name": "Контакт №372",
"gentime": 1568794268758035456,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/72/256.png"
},
"jid": "d-aa99025f-6f74-44e5-847e-6cee487f9e1f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.542612Z",
"display_name": "Контакт №373",
"gentime": 1568794268547127552,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/73/256.png"
},
"jid": "d-6df70265-928f-4ca3-96e1-ed61cfa40cf1",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.417555Z",
"display_name": "Контакт №374",
"gentime": 1568794268450340608,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/74/256.png"
},
"jid": "d-04c3458d-b1c7-4e39-8d85-965fec16ad46",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.397794Z",
"display_name": "Контакт №375",
"gentime": 1568794268402029824,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/75/256.png"
},
"jid": "d-8f6d1caa-2ac8-4e86-978b-f50113617ee9",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:08.321071Z",
"display_name": "Контакт №376",
"gentime": 1568794268344940032,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/76/256.png"
},
"jid": "d-6b23f2eb-9370-4f8d-a023-c7bdcfe1cf31",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.984121Z",
"display_name": "Контакт №377",
"gentime": 1568794267995261440,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/77/256.png"
},
"jid": "d-3dd8bbf9-b55e-4850-9a82-aae6bd182152",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.840396Z",
"display_name": "Контакт №378",
"gentime": 1568794267847095296,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/78/256.png"
},
"jid": "d-2a3720c5-557c-471a-9471-39aabf3abe4a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.723023Z",
"display_name": "Контакт №379",
"gentime": 1568794267740101632,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/79/256.png"
},
"jid": "d-0ae013bf-55e8-4859-b086-d59eee780cf2",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.674415Z",
"display_name": "Контакт №380",
"gentime": 1568794267677655808,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/80/256.png"
},
"jid": "d-0f9a3863-a931-4724-90e9-567784a22eec",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.554127Z",
"display_name": "Контакт №381",
"gentime": 1568794267569508096,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/81/256.png"
},
"jid": "d-a6669248-f57c-450d-b80b-301fcd106f5f",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.309320Z",
"display_name": "Контакт №382",
"gentime": 1568794267501177344,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/82/256.png"
},
"jid": "d-cfc26a73-2291-4450-af1b-a8299794c18a",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:07.223679Z",
"display_name": "Контакт №383",
"gentime": 1568794267230992128,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/83/256.png"
},
"jid": "d-7fabfb3f-6a40-45ff-a97a-bc81d7efb16b",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:06.948597Z",
"display_name": "Контакт №384",
"gentime": 1568794266972326656,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/84/256.png"
},
"jid": "d-4f6d0583-d0b6-48bf-944f-ef674c144a08",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:06.250637Z",
"display_name": "Контакт №385",
"gentime": 1568794266860331520,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/85/256.png"
},
"jid": "d-67387273-b755-49c4-837c-97a806d587ae",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:06.086757Z",
"display_name": "Контакт №386",
"gentime": 1568794266108278528,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/86/256.png"
},
"jid": "d-45729723-9ec1-4cd0-8bea-b7076c554e99",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.993180Z",
"display_name": "Контакт №387",
"gentime": 1568794266020557056,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/87/256.png"
},
"jid": "d-bec390d2-0c9b-41da-b8e4-68c5d3e44f34",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.891039Z",
"display_name": "Контакт №388",
"gentime": 1568794265917041408,
"icons": {
"stub": "http://127.0.0.1:8000/u/f08c50/88/256.png"
},
"jid": "d-c26923de-b037-4422-9b2d-6787f471c5b7",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.822950Z",
"display_name": "Контакт №389",
"gentime": 1568794265824527360,
"icons": {
"stub": "http://127.0.0.1:8000/u/578e3c/89/256.png"
},
"jid": "d-19e26ead-ec01-489f-9d5d-7172f1fab4fe",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.811414Z",
"display_name": "Контакт №390",
"gentime": 1568794265814760960,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/90/256.png"
},
"jid": "d-b0e892b0-1dcd-4f0c-9ae8-4d78f09991fc",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.791647Z",
"display_name": "Контакт №391",
"gentime": 1568794265798512640,
"icons": {
"stub": "http://127.0.0.1:8000/u/579dda/91/256.png"
},
"jid": "d-2888d4cc-5346-4e6d-a4a2-e9952a1dd379",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.768905Z",
"display_name": "Контакт №392",
"gentime": 1568794265772498944,
"icons": {
"stub": "http://127.0.0.1:8000/u/8e88eb/92/256.png"
},
"jid": "d-c8d78f72-bc77-4031-9f72-e2c2ebe52847",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.747922Z",
"display_name": "Контакт №393",
"gentime": 1568794265750023936,
"icons": {
"stub": "http://127.0.0.1:8000/u/e36659/93/256.png"
},
"jid": "d-2f162731-5d3a-49ed-8c89-465666decf13",
"notifications_enabled": true
},
{
"can_call": true,
"can_send_message": true,
"chat_type": "direct",
"counters_enabled": true,
"created": "2019-09-18T08:11:05.708632Z",
"display_name": "Контакт №394",
"gentime": 1568794265714737664,
"icons": {
"stub": "http://127.0.0.1:8000/u/f0769a/94/256.png"
},
"jid": "d-2a9d8c43-41d1-479c-9c8c-f029f799a724",
"notifications_enabled": true
}
],
"group_sections": [
{
"gentime": 1568823807351276544,
"name": "Группа №1",
"sort_ordering": 10,
"uid": "545abb14-aab7-478d-8aa8-f46351bf41c8"
},
{
"gentime": 1568825367467456000,
"name": "Группа №1",
"sort_ordering": 20,
"uid": "6f15c164-2506-424e-8c2f-4b5d5ed95f35"
},
{
"gentime": 1569200181572770048,
"name": "Группа №1",
"sort_ordering": 30,
"uid": "41c24725-22b4-4570-aa64-d5853839c295"
},
{
"gentime": 1569200595027406080,
"name": "Группа №1",
"sort_ordering": 40,
"uid": "d0135795-ebdf-45b5-8f0c-e0f2f9c2f539"
},
{
"gentime": 1569546020017176576,
"name": "Группа №1",
"sort_ordering": 50,
"uid": "4ca2b48a-eae4-4109-a758-d28f5160ea41"
}
],
"groups": [],
"task_chats": [],
"task_sections": [
{
"description": "",
"gentime": 1568823896399708672,
"name": "релиз",
"sort_ordering": 10,
"uid": "606e2d3c-1a34-4055-b149-32575975f203"
},
{
"description": "",
"gentime": 1568825437673717760,
"name": "релиз",
"sort_ordering": 20,
"uid": "8f769caa-d9fc-4b6f-a454-c49efee218cf"
},
{
"description": "",
"gentime": 1569200259883341312,
"name": "релиз",
"sort_ordering": 30,
"uid": "6a23bbf1-b9e1-4633-8366-a6f880a3457f"
},
{
"description": "",
"gentime": 1569200703173318656,
"name": "релиз",
"sort_ordering": 40,
"uid": "deab7e12-02cf-4dae-9d9a-c7a587c6b0d3"
},
{
"description": "",
"gentime": 1569200704012595456,
"is_archive": true,
"name": "То, что доктор прописал",
"sort_ordering": 50,
"uid": "cfe97f89-65a7-42a9-8274-69c1889fb0a8"
}
],
"task_tabs": [
{
"filters": [
{
"field": "assignee",
"title": "Исполнитель"
},
{
"field": "owner",
"title": "Постановщик"
},
{
"field": "section",
"title": "Проект"
},
{
"field": "tag",
"title": "Тэг"
}
],
"hide_empty": false,
"key": "active",
"pagination": false,
"show_counter": true,
"sort": [
{
"key": "activity",
"title": "Активность"
},
{
"key": "deadline",
"title": "Крайний срок"
},
{
"key": "new",
"title": "Новые"
},
{
"key": "old",
"title": "Старые"
}
],
"title": "Все"
},
{
"filters": [
{
"field": "assignee",
"title": "Исполнитель"
},
{
"field": "owner",
"title": "Постановщик"
},
{
"field": "section",
"title": "Проект"
},
{
"field": "tag",
"title": "Тэг"
}
],
"hide_empty": true,
"key": "expired",
"pagination": false,
"show_counter": true,
"sort": [
{
"key": "deadline",
"title": "Крайний срок"
},
{
"key": "new",
"title": "Новые"
},
{
"key": "old",
"title": "Старые"
}
],
"title": "Истёк срок"
},
{
"filters": [
{
"field": "owner",
"title": "Постановщик"
},
{
"field": "section",
"title": "Проект"
},
{
"field": "tag",
"title": "Тэг"
}
],
"hide_empty": false,
"key": "in",
"pagination": false,
"show_counter": true,
"sort": [
{
"key": "activity",
"title": "Активность"
},
{
"key": "deadline",
"title": "Крайний срок"
},
{
"key": "new",
"title": "Новые"
},
{
"key": "old",
"title": "Старые"
}
],
"title": "Входящие"
},
{
"filters": [
{
"field": "assignee",
"title": "Исполнитель"
},
{
"field": "section",
"title": "Проект"
},
{
"field": "tag",
"title": "Тэг"
}
],
"hide_empty": false,
"key": "out",
"pagination": false,
"show_counter": true,
"sort": [
{
"key": "activity",
"title": "Активность"
},
{
"key": "deadline",
"title": "Крайний срок"
},
{
"key": "new",
"title": "Новые"
},
{
"key": "old",
"title": "Старые"
}
],
"title": "Исходящие"
},
{
"filters": [
{
"field": "assignee",
"title": "Исполнитель"
},
{
"field": "owner",
"title": "Постановщик"
},
{
"field": "section",
"title": "Проект"
},
{
"field": "tag",
"title": "Тэг"
}
],
"hide_empty": true,
"key": "copy",
"pagination": false,
"show_counter": true,
"sort": [
{
"key": "activity",
"title": "Активность"
},
{
"key": "deadline",
"title": "Крайний срок"
},
{
"key": "new",
"title": "Новые"
},
{
"key": "old",
"title": "Старые"
}
],
"title": "Наблюдаю"
},
{
"filters": [
{
"field": "assignee",
"title": "Исполнитель"
},
{
"field": "owner",
"title": "Постановщик"
},
{
"field": "section",
"title": "Проект"
},
{
"field": "tag",
"title": "Тэг"
}
],
"hide_empty": true,
"key": "done",
"pagination": true,
"show_counter": false,
"sort": [
{
"key": "done",
"title": "Дата завершения"
},
{
"key": "new",
"title": "Новые"
},
{
"key": "old",
"title": "Старые"
}
],
"title": "Готово"
}
]
}
}
Ростер — информация о чате и его модификация
GET /api/v3/teams/{team_uid}/roster/{chat_jid}
Информация о чате.
Пример ответа:
{
"_time": "30 ms",
"ok": true,
"result": {
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"draft_num": 334,
"gentime": 1569546055501056735,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%90/256.png"
},
"is_archive": true,
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"last_message": {
"chat": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Группа удалена",
"title": "Группа удалена",
"type": "change"
},
"created": "2019-09-27T01:00:55.501025Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546055501056735,
"is_last": true,
"message_id": "cc8e9c13-4d18-479a-8109-82b7047d4e86",
"prev": "2ffd70ba-dcba-4d24-88a8-c221256eba36",
"to": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
}
DELETE /api/v3/teams/{team_uid}/roster/{chat_jid}
Отметка чата как hidden
. Чат сам разотметится, как только в него
написать.
Пример ответа:
{
"_time": "65 ms",
"ok": true,
"result": {
"can_add_member": true,
"can_change_member_status": true,
"can_change_settings": true,
"can_delete": true,
"can_remove_member": true,
"chat_type": "group",
"counters_enabled": true,
"created": "2019-09-27T01:00:20.488635Z",
"description": "описание, не обязательное",
"display_name": "Абырвалг",
"draft_num": 334,
"gentime": 1569546057863773440,
"hidden": true,
"icons": {
"stub": "http://127.0.0.1:8000/u/63bed3/%D0%90/256.png"
},
"is_archive": true,
"jid": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"last_message": {
"chat": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2",
"chat_type": "group",
"content": {
"actor": "d-0b1b2362-fb69-4dd6-8bfb-90c89517168d",
"text": "Группа удалена",
"title": "Группа удалена",
"type": "change"
},
"created": "2019-09-27T01:00:55.501025Z",
"from": "d-a2d94e8e-74aa-4b0b-b55d-0b4fc1ce07f4",
"gentime": 1569546055501056735,
"is_last": true,
"message_id": "cc8e9c13-4d18-479a-8109-82b7047d4e86",
"prev": "2ffd70ba-dcba-4d24-88a8-c221256eba36",
"to": "g-3f7e2a85-49f5-4586-8229-d9c52813dcb2"
},
"notifications_enabled": true,
"num_members": 2,
"public": true,
"status": "admin"
}
}