# Реализовано ## Заявки JIRA ### Перечень того с чем могу работать из 1с: > Сделано в 1с, что то уже вписано в процессы, что то через обработку и нужно прикрутить. - Добавление комментариев - реализована защита от дублирования (что бы при чтении комментариев из 1с не добавить еще один, как пример - ссылка на документ в ДО) - Чтение комментариев из заявки и сохранение в 1с - Чтение списка прикрепленных файлов и сохранение в 1с - Измененеи статуса заявки - меняется не просто реквизит, а происходит переход на доступный шаг по workflow (теоретически можно воткнуть любой статус, но не проверял это, т.к. непонятно как поведет себя jira да и как то странно это) - Изменение заголовка, описания - задачи не было, просто есть такая воможность. В теории можно поменять почти все в заявке. ### Понятен механизм, не перенесено в 1с: > Анализ + проверка через postman - Сброс счетчика неудачных попыток отправки заявок - Получение списка заявок, которые нужно отправить повторно - Создаение Баз 1С (есть вопросы по 2 атрибутам: группа AD и Услуга) - Изменение Баз 1С # Запросы ## Авторизация Нужно в заголовки запроса вставить: ```1C Запрос.Заголовки.Вставить("Authorization", "Bearer "+Токен); ``` Где **Токен** - токен доступа в JIRA ## Получить доступные переходы > GET https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2/transitions ### Ответ: ``` JSON { "expand": "transitions", "transitions": [ { "id": "851", "name": "Ответить клиенту", "description": "", "opsbarSequence": 5, "to": { "self": "https://sd2.dogma.ru/rest/api/2/status/10002", "description": "Ожидание ответа клиента", "iconUrl": "https://sd2.dogma.ru/images/icons/status_generic.gif", "name": "❔Ожидание клиента", "id": "10002", "statusCategory": { "self": "https://sd2.dogma.ru/rest/api/2/statuscategory/4", "id": 4, "key": "indeterminate", "colorName": "inprogress", "name": "В работе" } } }, { "id": "891", "name": "В процессе", "description": "", "opsbarSequence": 10, "to": { "self": "https://sd2.dogma.ru/rest/api/2/status/10301", "description": "Автоматически сгенерировано Jira Service Management во время импорта рабочего процесса", "iconUrl": "https://sd2.dogma.ru/images/icons/status_generic.gif", "name": "В процессе", "id": "10301", "statusCategory": { "self": "https://sd2.dogma.ru/rest/api/2/statuscategory/1", "id": 1, "key": "undefined", "colorName": "default", "name": "Нет категории" } } }, { "id": "761", "name": "Решить эту задачу", "description": "", "opsbarSequence": 2147483647, "to": { "self": "https://sd2.dogma.ru/rest/api/2/status/10300", "description": "Автоматически сгенерировано Jira Service Management во время импорта рабочего процесса", "iconUrl": "https://sd2.dogma.ru/images/icons/status_generic.gif", "name": "Решен", "id": "10300", "statusCategory": { "self": "https://sd2.dogma.ru/rest/api/2/statuscategory/1", "id": 1, "key": "undefined", "colorName": "default", "name": "Нет категории" } } }, { "id": "901", "name": "Отменить запрос", "description": "", "opsbarSequence": 2147483647, "to": { "self": "https://sd2.dogma.ru/rest/api/2/status/10302", "description": "Автоматически сгенерировано Jira Service Management во время импорта рабочего процесса", "iconUrl": "https://sd2.dogma.ru/images/icons/status_generic.gif", "name": "Отменено", "id": "10302", "statusCategory": { "self": "https://sd2.dogma.ru/rest/api/2/statuscategory/3", "id": 3, "key": "done", "colorName": "success", "name": "Выполнено" } } } ] } ``` ## Выполнить переход (Изменение статуса) По факту выполняется переход по воркфлоу > POST https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2/transitions ### Тело: ``` JSON { "transition": { "id": "871" } } ``` ## Выполнить переход и добавить комментарий > POST https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2/transitions ### Тело: ``` JSON { "transition": { "id": "891" }, "update": { "comment": [ { "add": { "body": "текст комментария" } } ] } } ``` ## Описание пакета из JIRA ### Поля ``` JSON { "id": "12300", "key": "SD-285", "summary": "Доступ к 1С ДО и БФ", "dataBaseList": [ "1С: Документооборот (SOFT-2354)", "1С: Битфинанс (SOFT-2355)" ], "created": "2026-02-12T13:02:09.1+0300", "issuetype": { "id": "10002", "description": "Для запросов, которые требуют согласования", "name": "Запрос на услугу с согласованием" }, "requestType": { "id": "211", "name": "Доступ к базам 1С", "description": "" }, "description": "Прошу предоставить доступ к базам 1С Документооборот и Битфинанс для выполнения служебных обязанностей", "creator": { "name": "yashin_d", "key": "JIRAUSER13341", "emailAddress": "yashin_d@dogma.ru", "displayName": "Яшин Дмитрий Юрьевич" }, "customer": { "name": "ageev_a2", "key": "JIRAUSER16033", "emailAddress": "ageev_a2@dogma.ru", "displayName": "Агеев Артем Вадимович" }, "status": { "description": "Новая заявка в очереди на распределение", "name": "⚠️Ожидание поддержки", "id": "10001" } } ``` ## Изменить заголовок > PUT https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2?notifyUsers=false - **notifyUsers** параметр отвечает за отправку уведомлений пользователям ### Тело: ```JSON { "fields": { "summary": "Измененный заголовок, тестовый" } } ``` ## Изменить счетчик ошибок API > PUT https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2?notifyUsers=false - **notifyUsers** параметр отвечает за отправку уведомлений пользователям ### Тело: ```JSON { "fields": { "customfield_11700": 0 } } ``` ## Добавить комментарий > POST https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2/comment ### Тело ```JSON { "body": "Тестовый комментарий" } ``` ### Ответ ```JSON { "self": "https://sd2.dogma.ru/rest/api/2/issue/12301/comment/12608", "id": "12608", "author": { "self": "https://sd2.dogma.ru/rest/api/2/user?username=jira_1c", "name": "jira_1c", "key": "JIRAUSER16682", "emailAddress": "", "avatarUrls": { "48x48": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=48", "24x24": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=24", "16x16": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=16", "32x32": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=32" }, "displayName": "jira_1c", "active": true, "timeZone": "Etc/GMT-3" }, "body": "Тестовый комментарий3", "updateAuthor": { "self": "https://sd2.dogma.ru/rest/api/2/user?username=jira_1c", "name": "jira_1c", "key": "JIRAUSER16682", "emailAddress": "", "avatarUrls": { "48x48": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=48", "24x24": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=24", "16x16": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=16", "32x32": "https://www.gravatar.com/avatar/d41d8cd98f00b204e9800998ecf8427e?d=mm&s=32" }, "displayName": "jira_1c", "active": true, "timeZone": "Etc/GMT-3" }, "created": "2026-02-13T13:10:22.034+0000", "updated": "2026-02-13T13:10:22.034+0000" } ``` ## Получить все данные заявки > GET https://sd2.dogma.ru/rest/api/2/issue/SDTESTG-2 ## Получить все поля > GET https://sd2.dogma.ru/rest/api/2/field ## Получить заявки для повторной отправки > POST https://sd2.dogma.ru/rest/api/2/search ### Тело ```JSON { "jql": "'cf[11700]' != null AND 'cf[11700]' > 0", "startAt": 0, "maxResults": 10, "fields": [ "updated", "id", "key", "status", "customfield_11700", // счетчик не отправлено "summary" ] } ``` ### Ответ ```JSON { "expand": "names,schema", "startAt": 0, "maxResults": 10, "total": 1, "issues": [ { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "12301", "self": "https://sd2.dogma.ru/rest/api/2/issue/12301", "key": "SDTESTG-2", "fields": { "summary": "Измененный заголовок, тестовый", "customfield_11700": 2.0, "updated": "2026-02-18T07:03:38.000+0000", "status": { "self": "https://sd2.dogma.ru/rest/api/2/status/10301", "description": "Автоматически сгенерировано Jira Service Management во время импорта рабочего процесса", "iconUrl": "https://sd2.dogma.ru/images/icons/status_generic.gif", "name": "В процессе", "id": "10301", "statusCategory": { "self": "https://sd2.dogma.ru/rest/api/2/statuscategory/1", "id": 1, "key": "undefined", "colorName": "default", "name": "Нет категории" } } } } ] } ``` ## Изменить наименование базы 1с > PUT https://sd2.dogma.ru/rest/insight/1.0/object/2354 ### Тело ```JSON { "objectTypeId": 187, "attributes": [ { "objectTypeAttributeId": 1181, "objectAttributeValues": [ { "value": "1С: Документооборот_", "searchValue": "1С: Документооборот_", "displayValue": "1С: Документооборот_", "referencedType": false } ] } ] } ``` ### Ответ ``` JSON { "id": 2354, "label": "1С: Документооборот_", "objectKey": "SOFT-2354", "avatar": { "url16": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=16&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url48": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=48&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url72": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=72&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url144": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=144&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url288": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=288&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "objectId": 2354 }, "objectType": { "id": 187, "name": "1С Конфигурации", "type": 0, "icon": { "id": 14, "name": "Cardboard Box", "url16": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=16", "url48": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=48" }, "position": 2, "created": "2024-10-12T22:03:11.805Z", "updated": "2025-02-24T15:07:39.529Z", "objectCount": 0, "objectSchemaId": 3, "inherited": false, "abstractObjectType": false, "parentObjectTypeInherited": false }, "created": "2024-10-12T22:05:51.988Z", "updated": "2026-02-17T13:47:06.334Z", "hasAvatar": false, "timestamp": 1771336026334, "attributes": [ { "id": 13613, "objectTypeAttribute": { "id": 1180, "name": "Key", "label": false, "type": 0, "defaultType": { "id": 0, "name": "Текст" }, "editable": false, "system": true, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 1, "maximumCardinality": 1, "removable": false, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "options": "", "position": 0 }, "objectTypeAttributeId": 1180, "objectAttributeValues": [ { "value": "SOFT-2354", "searchValue": "SOFT-2354", "displayValue": "SOFT-2354", "referencedType": false } ], "objectId": 2354 }, { "id": 13616, "objectTypeAttribute": { "id": 1181, "name": "Name", "label": true, "type": 0, "description": "Имя объекта", "defaultType": { "id": 0, "name": "Текст" }, "editable": true, "system": false, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 1, "maximumCardinality": 1, "removable": false, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "options": "", "position": 1 }, "objectTypeAttributeId": 1181, "objectAttributeValues": [ { "value": "1С: Документооборот_", "searchValue": "1С: Документооборот_", "displayValue": "1С: Документооборот_", "referencedType": false } ], "objectId": 2354 }, { "id": 13614, "objectTypeAttribute": { "id": 1182, "name": "Created", "label": false, "type": 0, "defaultType": { "id": 6, "name": "Дата/время" }, "editable": false, "system": true, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 1, "maximumCardinality": 1, "removable": false, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "options": "", "position": 2 }, "objectTypeAttributeId": 1182, "objectAttributeValues": [ { "value": "2024-10-12T22:05:51.988Z", "searchValue": "2024-10-12T22:05:51.988Z", "displayValue": "13/окт/24 1:05", "referencedType": false } ], "objectId": 2354 }, { "id": 13615, "objectTypeAttribute": { "id": 1183, "name": "Updated", "label": false, "type": 0, "defaultType": { "id": 6, "name": "Дата/время" }, "editable": false, "system": true, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 1, "maximumCardinality": 1, "removable": false, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "options": "", "position": 3 }, "objectTypeAttributeId": 1183, "objectAttributeValues": [ { "value": "2026-02-17T13:47:06.274Z", "searchValue": "2026-02-17T13:47:06.274Z", "displayValue": "17/фев/26 16:47", "referencedType": false } ], "objectId": 2354 }, { "id": 13617, "objectTypeAttribute": { "id": 1185, "name": "ADGroupName", "label": false, "type": 0, "defaultType": { "id": 0, "name": "Текст" }, "editable": true, "system": false, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 0, "maximumCardinality": 1, "removable": true, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "options": "", "position": 5 }, "objectTypeAttributeId": 1185, "objectAttributeValues": [ { "value": "_База1С_DOC1C", "searchValue": "_База1С_DOC1C", "displayValue": "_База1С_DOC1C", "referencedType": false } ], "objectId": 2354 }, { "id": 14552, "objectTypeAttribute": { "id": 1472, "name": "Услуга", "label": false, "type": 0, "defaultType": { "id": 0, "name": "Текст" }, "editable": true, "system": false, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 0, "maximumCardinality": 1, "removable": true, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "options": "", "position": 6 }, "objectTypeAttributeId": 1472, "objectAttributeValues": [ { "value": "sd/021fffac-3eda-4f9a-abf3-221ce9902c66", "searchValue": "sd/021fffac-3eda-4f9a-abf3-221ce9902c66", "displayValue": "sd/021fffac-3eda-4f9a-abf3-221ce9902c66", "referencedType": false } ], "objectId": 2354 }, { "id": 14553, "objectTypeAttribute": { "id": 1474, "name": "Метки", "label": false, "type": 0, "defaultType": { "id": 10, "name": "Выбрать" }, "editable": true, "system": false, "sortable": true, "summable": false, "indexed": true, "minimumCardinality": 0, "maximumCardinality": -1, "suffix": "", "removable": true, "hidden": false, "includeChildObjectTypes": false, "uniqueAttribute": false, "regexValidation": "", "qlQuery": "", "options": "доступ,делегирование", "position": 7, "iql": "" }, "objectTypeAttributeId": 1474, "objectAttributeValues": [ { "value": "делегирование", "searchValue": "делегирование", "displayValue": "делегирование", "referencedType": false }, { "value": "доступ", "searchValue": "доступ", "displayValue": "доступ", "referencedType": false } ], "objectId": 2354 } ], "_links": { "self": "https://sd2.dogma.ru/secure/ShowObject.jspa?id=2354" }, "name": "1С: Документооборот_" } ``` ## Изменить ответственного у базы > PUT https://sd2.dogma.ru/rest/insight/1.0/object/2354 - 2354 : ID объекта ### Тело ```JSON { "objectTypeId": 187, "attributes": [ { "objectTypeAttributeId": 1184, "objectAttributeValues": [ { "value": "JIRAUSER16682", "searchValue": "JIRAUSER16682", "displayValue": "jira_1c (jira_1c)" } ] } ] } ``` ### Ответ В ответе полное описание объекта с полями, см. [Изменить наименование базы 1с](#изменить-наименование-базы-1с) ## Создание базы 1с > POST https://sd2.dogma.ru/rest/insight/1.0/object/create ### Тело ```JSON { "objectTypeId": "187", "attributes": [ { "objectTypeAttributeId": 1181, "objectAttributeValues": [ { "value": "1С: БСО", "searchValue": "1С: БСО", "displayValue": "1С: БСО", "referencedType": false } ] }, { "objectTypeAttributeId": 1185, "objectAttributeValues": [ { "value": "_База1С_DOC1C", "searchValue": "_База1С_DOC1C", "displayValue": "_База1С_DOC1C", "referencedType": false } ] }, { "objectTypeAttributeId": 1472, "objectAttributeValues": [ { "value": "sd/021fffac-3eda-4f9a-abf3-221ce9902c66", "searchValue": "sd/021fffac-3eda-4f9a-abf3-221ce9902c66", "displayValue": "sd/021fffac-3eda-4f9a-abf3-221ce9902c66", "referencedType": false } ] }, { "objectTypeAttributeId": 1474, "objectAttributeValues": [ { "value": "делегирование", "searchValue": "делегирование", "displayValue": "делегирование", "referencedType": false }, { "value": "доступ", "searchValue": "доступ", "displayValue": "доступ", "referencedType": false } ] } ] } ``` ### Ответ ``` JSON { "id": 2519, "label": "1С: БСО", "objectKey": "SOFT-2519", "avatar": { "url16": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=16&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url48": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=48&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url72": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=72&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url144": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=144&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "url288": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=288&uuid=fdc70e02-6957-4a7d-9a3c-a3e4c8a1c5b6", "objectId": 2519 }, "objectType": { "id": 187, "name": "1С Конфигурации", "type": 0, "icon": { "id": 14, "name": "Cardboard Box", "url16": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=16", "url48": "https://sd2.dogma.ru/rest/insight/1.0/objecttype/187/icon.png?size=48" }, "position": 2, "created": "2024-10-12T22:03:11.805Z", "updated": "2025-02-24T15:07:39.529Z", "objectCount": 0, "objectSchemaId": 3, "inherited": false, "abstractObjectType": false, "parentObjectTypeInherited": false }, "created": "2026-02-17T14:11:37.915Z", "updated": "2026-02-17T14:11:37.915Z", "hasAvatar": false, "timestamp": 1771337497915, "_links": { "self": "https://sd2.dogma.ru/secure/ShowObject.jspa?id=2519" }, "name": "1С: БСО" } ``` ---- # Далее техническая информация. ## Примеры ### Пример запроса к Jira В этом запросе получаю пять задач, созданных "korsunov_k" и назначенных "ageev_a2", возможны простые сортировки доп.отборы и тп благодаря JQL. JQL - своего рода упрощенный SQL от atlassian. ``` curl curl --location 'https://sd.dogma.ru/rest/api/2/search' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer MyToken' \ --data '{ "jql": "assignee = ageev_a2 and creator = korsunov_k", "startAt": 0, "maxResults": 5, "fields": [ "self", "key", "summary" ] }' ``` ### Пример ответа ``` JSON { "expand": "schema,names", "startAt": 0, "maxResults": 5, "total": 4, "issues": [ { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "68299", "self": "https://sd.dogma.ru/rest/api/2/issue/68299", "key": "DEV1C-444", "fields": { "summary": "Переход коммуникации ДО и ЛК на Rebbit" } }, { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "57268", "self": "https://sd.dogma.ru/rest/api/2/issue/57268", "key": "DEV1C-350", "fields": { "summary": "Перевод на новое решение получения ссылок для подключения к сервисам через" } }, { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "56619", "self": "https://sd.dogma.ru/rest/api/2/issue/56619", "key": "DEV1C-345", "fields": { "summary": "Аудит интеграций формализация данных" } }, { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "55867", "self": "https://sd.dogma.ru/rest/api/2/issue/55867", "key": "DEV1C-339", "fields": { "summary": "Доработка системы применения правил установки паролей" } } ] } ``` ### Полный ответ без ограничения полей ``` JSON { "expand": "schema,names", "startAt": 0, "maxResults": 5, "total": 4, "issues": [ { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "68299", "self": "https://sd.dogma.ru/rest/api/2/issue/68299", "key": "DEV1C-444", "fields": { "customfield_13100": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12402", "value": "Большая стройка", "id": "12402", "disabled": false, "child": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12408", "value": "Приемка строительных работ, предписания, штрафы", "id": "12408", "disabled": false } }, "fixVersions": [], "customfield_10110": null, "customfield_10111": null, "resolution": null, "customfield_10112": null, "customfield_10113": null, "customfield_10114": null, "customfield_10104": null, "customfield_10105": null, "customfield_10106": null, "customfield_10107": null, "customfield_10108": null, "customfield_10109": null, "lastViewed": "2025-07-22T15:18:11.280+0000", "priority": { "self": "https://sd.dogma.ru/rest/api/2/priority/3", "iconUrl": "https://sd.dogma.ru/images/icons/priorities/medium.svg", "name": "Средний", "id": "3" }, "customfield_10100": null, "customfield_10101": null, "customfield_10102": null, "labels": [], "customfield_10103": null, "aggregatetimeoriginalestimate": null, "timeestimate": null, "versions": [], "issuelinks": [], "assignee": { "self": "https://sd.dogma.ru/rest/api/2/user?username=ageev_a2", "name": "ageev_a2", "key": "JIRAUSER25104", "emailAddress": "ageev_a2@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER25104&avatarId=25003", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER25104&avatarId=25003", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER25104&avatarId=25003", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER25104&avatarId=25003" }, "displayName": "Агеев Артем Вадимович", "active": true, "timeZone": "Etc/GMT-3" }, "status": { "self": "https://sd.dogma.ru/rest/api/2/status/10005", "description": "В данный момент ведётся активная работа над заявкой ответственным исполнителем.", "iconUrl": "https://sd.dogma.ru/images/icons/status_generic.gif", "name": "▶️В работе", "id": "10005", "statusCategory": { "self": "https://sd.dogma.ru/rest/api/2/statuscategory/4", "id": 4, "key": "indeterminate", "colorName": "inprogress", "name": "В работе" } }, "components": [], "customfield_10722": null, "customfield_10723": null, "customfield_10724": null, "aggregatetimeestimate": null, "customfield_10725": null, "customfield_10726": null, "customfield_10727": null, "customfield_10728": null, "creator": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "subtasks": [], "reporter": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_12101": null, "customfield_12100": null, "aggregateprogress": { "progress": 338400, "total": 338400, "percent": 100 }, "customfield_12103": null, "customfield_10200": "", "customfield_12102": null, "customfield_11403": [ "Checklist(id=39667, issueId=68299, _items=[])" ], "customfield_10710": null, "customfield_11405": null, "customfield_10711": null, "customfield_11404": null, "customfield_10716": null, "customfield_10718": null, "progress": { "progress": 338400, "total": 338400, "percent": 100 }, "issuetype": { "self": "https://sd.dogma.ru/rest/api/2/issuetype/10005", "id": "10005", "description": "Простая задача, не требующая согласования", "iconUrl": "https://sd.dogma.ru/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype", "name": "Задача", "subtask": false, "avatarId": 10318 }, "timespent": 338400, "project": { "self": "https://sd.dogma.ru/rest/api/2/project/11700", "id": "11700", "key": "DEV1C", "name": "1С: Разработка по 1С", "projectTypeKey": "software", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/projectavatar?pid=11700&avatarId=19200", "24x24": "https://sd.dogma.ru/secure/projectavatar?size=small&pid=11700&avatarId=19200", "16x16": "https://sd.dogma.ru/secure/projectavatar?size=xsmall&pid=11700&avatarId=19200", "32x32": "https://sd.dogma.ru/secure/projectavatar?size=medium&pid=11700&avatarId=19200" }, "projectCategory": { "self": "https://sd.dogma.ru/rest/api/2/projectCategory/10001", "id": "10001", "description": "Проекты, связанные с операционной деятельностью", "name": "ОПЕР" } }, "aggregatetimespent": 338400, "customfield_12601": null, "customfield_10700": "0|i07icv:", "customfield_10701": null, "resolutiondate": null, "customfield_10705": null, "customfield_10706": "{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@531d262c[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4c992ad4[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@41fd80d8[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@4437cdb9[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@30a438b4[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@144566f2[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3913dfe2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@43b3977c[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@52c36626[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6d8ee87a[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@4a45c6e6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@1592b0a5[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":true}}", "customfield_10707": null, "workratio": -1, "customfield_10708": null, "customfield_10709": null, "watches": { "self": "https://sd.dogma.ru/rest/api/2/issue/DEV1C-444/watchers", "watchCount": 1, "isWatching": false }, "created": "2025-07-01T08:03:19.000+0000", "customfield_12200": null, "customfield_12600": null, "customfield_11105": null, "customfield_11106": null, "customfield_11107": null, "customfield_11900": "2025-07-02", "customfield_11901": "2025-11-20", "updated": "2025-07-21T14:56:44.000+0000", "timeoriginalestimate": null, "description": "# Анализ предоставленного реестра вызовов на стороне 1С (предоставила Аня)\r\n # Провести коммуникацию с Савелием\r\n # Получить актуальный реестр точек взаимодействия со всех систем (ЛК и ДО)\r\n # Согласовать концепцию передачи пакетов\r\n # Собрать тестовую среду (ДО и ЛК у Реббита есть тестовая очередь)\r\n # Разработка и моделирование (отрабатываем методику отправки\\ получения и обработки пакета)\r\n # Последовательно переводим в тестовой среде каждый процесс на работу через механизмы, разработанные в 6-м пункте\r\n # Выполнить тестирование с аналитиками (как со стороны 1С так и со стороны WEB)\r\n # Фаза доработки замечаний\r\n # Согласование даты и процессе перехода\r\n # Перевод продуктовой среды на новый механизм\r\n # Мониторинг - сопровождение\r\n\r\n ", "customfield_11100": null, "customfield_11101": null, "customfield_11102": null, "customfield_11103": null, "customfield_11104": null, "summary": "Переход коммуникации ДО и ЛК на Rebbit", "customfield_10120": null, "customfield_10000": [], "customfield_10121": null, "customfield_10001": null, "customfield_10122": null, "customfield_10002": null, "customfield_12300": null, "customfield_10003": null, "customfield_10004": null, "customfield_10115": null, "customfield_11204": null, "customfield_11601": null, "customfield_10116": null, "customfield_11205": [ "1С Документооборот (SOFT-2538)" ], "environment": null, "customfield_10117": null, "customfield_10118": null, "customfield_10119": null, "duedate": null } }, { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "57268", "self": "https://sd.dogma.ru/rest/api/2/issue/57268", "key": "DEV1C-350", "fields": { "customfield_13100": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12610", "value": "Управление разработкой", "id": "12610", "disabled": false, "child": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12611", "value": "DevOps и оптимизация", "id": "12611", "disabled": false } }, "fixVersions": [], "customfield_10110": null, "customfield_10111": null, "resolution": { "self": "https://sd.dogma.ru/rest/api/2/resolution/10000", "id": "10000", "description": "По данному обращению работа завершена.", "name": "Готово" }, "customfield_10112": null, "customfield_10113": null, "customfield_10114": null, "customfield_10104": null, "customfield_10105": null, "customfield_10106": null, "customfield_10107": null, "customfield_10108": null, "customfield_10109": null, "lastViewed": "2025-07-03T15:00:55.341+0000", "priority": { "self": "https://sd.dogma.ru/rest/api/2/priority/3", "iconUrl": "https://sd.dogma.ru/images/icons/priorities/medium.svg", "name": "Средний", "id": "3" }, "customfield_10100": null, "customfield_10101": null, "customfield_10102": null, "labels": [], "customfield_10103": null, "aggregatetimeoriginalestimate": null, "timeestimate": null, "versions": [], "issuelinks": [ { "id": "26561", "self": "https://sd.dogma.ru/rest/api/2/issueLink/26561", "type": { "id": "10003", "name": "Связь", "inward": "связана с", "outward": "связана с ", "self": "https://sd.dogma.ru/rest/api/2/issueLinkType/10003" }, "outwardIssue": { "id": "46265", "key": "DEV1C-224", "self": "https://sd.dogma.ru/rest/api/2/issue/46265", "fields": { "summary": "Хранение паролей 1С", "status": { "self": "https://sd.dogma.ru/rest/api/2/status/10005", "description": "В данный момент ведётся активная работа над заявкой ответственным исполнителем.", "iconUrl": "https://sd.dogma.ru/images/icons/status_generic.gif", "name": "▶️В работе", "id": "10005", "statusCategory": { "self": "https://sd.dogma.ru/rest/api/2/statuscategory/4", "id": 4, "key": "indeterminate", "colorName": "inprogress", "name": "В работе" } }, "priority": { "self": "https://sd.dogma.ru/rest/api/2/priority/2", "iconUrl": "https://sd.dogma.ru/images/icons/priorities/high.svg", "name": "Высокий", "id": "2" }, "issuetype": { "self": "https://sd.dogma.ru/rest/api/2/issuetype/10005", "id": "10005", "description": "Простая задача, не требующая согласования", "iconUrl": "https://sd.dogma.ru/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype", "name": "Задача", "subtask": false, "avatarId": 10318 } } } } ], "assignee": { "self": "https://sd.dogma.ru/rest/api/2/user?username=ageev_a2", "name": "ageev_a2", "key": "JIRAUSER25104", "emailAddress": "ageev_a2@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER25104&avatarId=25003", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER25104&avatarId=25003", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER25104&avatarId=25003", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER25104&avatarId=25003" }, "displayName": "Агеев Артем Вадимович", "active": true, "timeZone": "Etc/GMT-3" }, "status": { "self": "https://sd.dogma.ru/rest/api/2/status/10004", "description": "Работы над заявкой завершены", "iconUrl": "https://sd.dogma.ru/images/icons/status_generic.gif", "name": "✔️Решено", "id": "10004", "statusCategory": { "self": "https://sd.dogma.ru/rest/api/2/statuscategory/3", "id": 3, "key": "done", "colorName": "success", "name": "Выполнено" } }, "components": [], "customfield_10722": null, "customfield_10723": null, "customfield_10724": null, "aggregatetimeestimate": null, "customfield_10725": null, "customfield_10726": null, "customfield_10727": null, "customfield_10728": null, "creator": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "subtasks": [], "reporter": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_12101": null, "customfield_12100": null, "aggregateprogress": { "progress": 201600, "total": 201600, "percent": 100 }, "customfield_12103": null, "customfield_10200": "", "customfield_12102": null, "customfield_11403": [ "Checklist(id=30781, issueId=57268, _items=[])" ], "customfield_10710": null, "customfield_11405": "0/0 - Done", "customfield_10711": null, "customfield_11404": null, "customfield_10716": { "self": "https://sd.dogma.ru/rest/api/2/user?username=tereshkov_p", "name": "tereshkov_p", "key": "JIRAUSER13579", "emailAddress": "tereshkov_p@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER13579&avatarId=14171", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER13579&avatarId=14171", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER13579&avatarId=14171", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER13579&avatarId=14171" }, "displayName": "Терешков Павел Евгеньевич", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_10718": null, "progress": { "progress": 201600, "total": 201600, "percent": 100 }, "issuetype": { "self": "https://sd.dogma.ru/rest/api/2/issuetype/10005", "id": "10005", "description": "Простая задача, не требующая согласования", "iconUrl": "https://sd.dogma.ru/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype", "name": "Задача", "subtask": false, "avatarId": 10318 }, "timespent": 201600, "project": { "self": "https://sd.dogma.ru/rest/api/2/project/11700", "id": "11700", "key": "DEV1C", "name": "1С: Разработка по 1С", "projectTypeKey": "software", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/projectavatar?pid=11700&avatarId=19200", "24x24": "https://sd.dogma.ru/secure/projectavatar?size=small&pid=11700&avatarId=19200", "16x16": "https://sd.dogma.ru/secure/projectavatar?size=xsmall&pid=11700&avatarId=19200", "32x32": "https://sd.dogma.ru/secure/projectavatar?size=medium&pid=11700&avatarId=19200" }, "projectCategory": { "self": "https://sd.dogma.ru/rest/api/2/projectCategory/10001", "id": "10001", "description": "Проекты, связанные с операционной деятельностью", "name": "ОПЕР" } }, "aggregatetimespent": 201600, "customfield_13700": 9.50287E8, "customfield_12601": null, "customfield_10700": "0|i060lb:", "customfield_10701": null, "resolutiondate": "2025-06-06T10:25:28.000+0000", "customfield_10705": null, "customfield_10706": "{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@1d9fc9a2[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5e83d22c[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@39ae3b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@40eb1ea2[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2cf6c064[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@a91257a[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@47941a65[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5f92023b[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@45fd1c4d[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@46c44b7d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@216436f2[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@6e287b3f[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":true}}", "customfield_10707": null, "workratio": -1, "customfield_10708": null, "customfield_10709": null, "watches": { "self": "https://sd.dogma.ru/rest/api/2/issue/DEV1C-350/watchers", "watchCount": 1, "isWatching": false }, "created": "2025-05-26T10:27:21.000+0000", "customfield_12200": null, "customfield_12600": null, "customfield_11105": null, "customfield_11106": null, "customfield_11107": null, "customfield_11900": "2025-05-29", "customfield_11901": "2025-06-20", "updated": "2025-06-06T12:03:04.000+0000", "timeoriginalestimate": null, "description": "Переключение всех интеграций к сервисам http\\https через новое решение во всех информационных базах;\r\n\r\nДаты установил предварительно, пока не обсудим план;\r\n # ЛК в ДО закроем до 03.06\r\n # ЗУПовские ручки до 06.06", "customfield_11100": null, "customfield_11101": null, "customfield_11102": null, "customfield_11103": null, "customfield_11104": null, "summary": "Перевод на новое решение получения ссылок для подключения к сервисам через", "customfield_10120": null, "customfield_10000": [], "customfield_10121": null, "customfield_10001": null, "customfield_10122": null, "customfield_10002": null, "customfield_12300": null, "customfield_10003": null, "customfield_10004": null, "customfield_10115": null, "customfield_11204": null, "customfield_11601": null, "customfield_10116": null, "customfield_11205": null, "environment": null, "customfield_10117": null, "customfield_10118": null, "customfield_10119": null, "duedate": null } }, { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "56619", "self": "https://sd.dogma.ru/rest/api/2/issue/56619", "key": "DEV1C-345", "fields": { "customfield_13100": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12610", "value": "Управление разработкой", "id": "12610", "disabled": false, "child": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12611", "value": "DevOps и оптимизация", "id": "12611", "disabled": false } }, "fixVersions": [], "customfield_10110": null, "customfield_10111": null, "resolution": { "self": "https://sd.dogma.ru/rest/api/2/resolution/10000", "id": "10000", "description": "По данному обращению работа завершена.", "name": "Готово" }, "customfield_10112": null, "customfield_10113": null, "customfield_10114": null, "customfield_10104": null, "customfield_10105": null, "customfield_10106": null, "customfield_10107": null, "customfield_10108": null, "customfield_10109": null, "lastViewed": "2025-07-22T08:10:12.473+0000", "priority": { "self": "https://sd.dogma.ru/rest/api/2/priority/3", "iconUrl": "https://sd.dogma.ru/images/icons/priorities/medium.svg", "name": "Средний", "id": "3" }, "customfield_10100": null, "customfield_10101": null, "customfield_10102": null, "labels": [], "customfield_10103": null, "aggregatetimeoriginalestimate": null, "timeestimate": null, "versions": [], "issuelinks": [], "assignee": { "self": "https://sd.dogma.ru/rest/api/2/user?username=ageev_a2", "name": "ageev_a2", "key": "JIRAUSER25104", "emailAddress": "ageev_a2@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER25104&avatarId=25003", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER25104&avatarId=25003", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER25104&avatarId=25003", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER25104&avatarId=25003" }, "displayName": "Агеев Артем Вадимович", "active": true, "timeZone": "Etc/GMT-3" }, "status": { "self": "https://sd.dogma.ru/rest/api/2/status/10004", "description": "Работы над заявкой завершены", "iconUrl": "https://sd.dogma.ru/images/icons/status_generic.gif", "name": "✔️Решено", "id": "10004", "statusCategory": { "self": "https://sd.dogma.ru/rest/api/2/statuscategory/3", "id": 3, "key": "done", "colorName": "success", "name": "Выполнено" } }, "components": [], "customfield_10722": null, "customfield_10723": null, "customfield_10724": null, "aggregatetimeestimate": null, "customfield_10725": null, "customfield_10726": null, "customfield_10727": null, "customfield_10728": null, "creator": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "subtasks": [], "reporter": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_12101": null, "customfield_12100": null, "aggregateprogress": { "progress": 230400, "total": 230400, "percent": 100 }, "customfield_12103": null, "customfield_10200": "", "customfield_12102": null, "customfield_11403": [ "Checklist(id=30297, issueId=56619, _items=[])" ], "customfield_10710": null, "customfield_11405": null, "customfield_10711": null, "customfield_11404": null, "customfield_10716": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_10718": null, "progress": { "progress": 230400, "total": 230400, "percent": 100 }, "issuetype": { "self": "https://sd.dogma.ru/rest/api/2/issuetype/10005", "id": "10005", "description": "Простая задача, не требующая согласования", "iconUrl": "https://sd.dogma.ru/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype", "name": "Задача", "subtask": false, "avatarId": 10318 }, "timespent": 230400, "project": { "self": "https://sd.dogma.ru/rest/api/2/project/11700", "id": "11700", "key": "DEV1C", "name": "1С: Разработка по 1С", "projectTypeKey": "software", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/projectavatar?pid=11700&avatarId=19200", "24x24": "https://sd.dogma.ru/secure/projectavatar?size=small&pid=11700&avatarId=19200", "16x16": "https://sd.dogma.ru/secure/projectavatar?size=xsmall&pid=11700&avatarId=19200", "32x32": "https://sd.dogma.ru/secure/projectavatar?size=medium&pid=11700&avatarId=19200" }, "projectCategory": { "self": "https://sd.dogma.ru/rest/api/2/projectCategory/10001", "id": "10001", "description": "Проекты, связанные с операционной деятельностью", "name": "ОПЕР" } }, "aggregatetimespent": 230400, "customfield_13700": 1.049104E9, "customfield_12601": null, "customfield_10700": "0|i05xpz:", "customfield_10701": null, "resolutiondate": "2025-06-04T09:32:12.000+0000", "customfield_10705": null, "customfield_10706": "{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@61170a56[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@550b6972[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@5fa027ff[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@516e9580[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@427f7004[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@22e5ea77[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7c24ae0b[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@5943f69a[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@608542e6[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@6d3ebad3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@34330589[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@7202c2b3[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":true}}", "customfield_10707": null, "workratio": -1, "customfield_10708": null, "customfield_10709": null, "watches": { "self": "https://sd.dogma.ru/rest/api/2/issue/DEV1C-345/watchers", "watchCount": 1, "isWatching": false }, "created": "2025-05-23T06:07:08.000+0000", "customfield_12200": null, "customfield_12600": null, "customfield_11105": null, "customfield_11106": null, "customfield_11107": null, "customfield_11900": "2025-05-19", "customfield_11901": "2025-05-30", "updated": "2025-06-04T09:32:12.000+0000", "timeoriginalestimate": null, "description": "* Изучить справочный материал\r\n * Провести общий аудит по интеграциям\r\n * Формализовать данные в Confluence\r\n\r\nКонечный результат: примеры описания обменов для того чтобы в начале проекта по Датареону обсудить\\предложить коллегам;", "customfield_11100": null, "customfield_11101": null, "customfield_11102": null, "customfield_11103": null, "customfield_11104": null, "summary": "Аудит интеграций формализация данных", "customfield_10120": null, "customfield_10000": [], "customfield_10121": null, "customfield_10001": null, "customfield_10122": null, "customfield_10002": null, "customfield_12300": null, "customfield_10003": null, "customfield_10004": null, "customfield_10115": null, "customfield_11204": null, "customfield_11601": null, "customfield_10116": null, "customfield_11205": null, "environment": null, "customfield_10117": null, "customfield_10118": null, "customfield_10119": null, "duedate": null } }, { "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields", "id": "55867", "self": "https://sd.dogma.ru/rest/api/2/issue/55867", "key": "DEV1C-339", "fields": { "customfield_13100": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12610", "value": "Управление разработкой", "id": "12610", "disabled": false, "child": { "self": "https://sd.dogma.ru/rest/api/2/customFieldOption/12611", "value": "DevOps и оптимизация", "id": "12611", "disabled": false } }, "fixVersions": [], "customfield_10110": null, "customfield_10111": null, "resolution": null, "customfield_10112": null, "customfield_10113": null, "customfield_10114": null, "customfield_10104": null, "customfield_10105": null, "customfield_10106": null, "customfield_10107": null, "customfield_10108": null, "customfield_10109": null, "lastViewed": "2025-07-23T11:03:14.988+0000", "priority": { "self": "https://sd.dogma.ru/rest/api/2/priority/3", "iconUrl": "https://sd.dogma.ru/images/icons/priorities/medium.svg", "name": "Средний", "id": "3" }, "customfield_10100": null, "customfield_10101": null, "customfield_10102": null, "labels": [], "customfield_10103": null, "aggregatetimeoriginalestimate": null, "timeestimate": null, "versions": [], "issuelinks": [], "assignee": { "self": "https://sd.dogma.ru/rest/api/2/user?username=ageev_a2", "name": "ageev_a2", "key": "JIRAUSER25104", "emailAddress": "ageev_a2@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER25104&avatarId=25003", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER25104&avatarId=25003", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER25104&avatarId=25003", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER25104&avatarId=25003" }, "displayName": "Агеев Артем Вадимович", "active": true, "timeZone": "Etc/GMT-3" }, "status": { "self": "https://sd.dogma.ru/rest/api/2/status/10601", "description": "Тестирование нового функционала системы", "iconUrl": "https://sd.dogma.ru/images/icons/statuses/generic.png", "name": "⚙️Тестирование", "id": "10601", "statusCategory": { "self": "https://sd.dogma.ru/rest/api/2/statuscategory/4", "id": 4, "key": "indeterminate", "colorName": "inprogress", "name": "В работе" } }, "components": [], "customfield_10722": null, "customfield_10723": null, "customfield_10724": null, "aggregatetimeestimate": null, "customfield_10725": null, "customfield_10726": null, "customfield_10727": null, "customfield_10728": null, "creator": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "subtasks": [], "reporter": { "self": "https://sd.dogma.ru/rest/api/2/user?username=korsunov_k", "name": "korsunov_k", "key": "JIRAUSER16101", "emailAddress": "korsunov_k@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER16101&avatarId=15103", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER16101&avatarId=15103", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER16101&avatarId=15103", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER16101&avatarId=15103" }, "displayName": "Корсунов Константин Александрович", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_12101": null, "customfield_12100": null, "aggregateprogress": { "progress": 126000, "total": 126000, "percent": 100 }, "customfield_12103": null, "customfield_10200": "", "customfield_12102": null, "customfield_11403": [ "Checklist(id=29619, issueId=55867, _items=[])" ], "customfield_10710": null, "customfield_11405": null, "customfield_10711": null, "customfield_11404": null, "customfield_10716": { "self": "https://sd.dogma.ru/rest/api/2/user?username=napolskikh", "name": "napolskikh", "key": "JIRAUSER10392", "emailAddress": "napolskikh@dogma.ru", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/useravatar?ownerId=JIRAUSER10392&avatarId=11932", "24x24": "https://sd.dogma.ru/secure/useravatar?size=small&ownerId=JIRAUSER10392&avatarId=11932", "16x16": "https://sd.dogma.ru/secure/useravatar?size=xsmall&ownerId=JIRAUSER10392&avatarId=11932", "32x32": "https://sd.dogma.ru/secure/useravatar?size=medium&ownerId=JIRAUSER10392&avatarId=11932" }, "displayName": "Напольских Юлия Владимировна", "active": true, "timeZone": "Etc/GMT-3" }, "customfield_10718": null, "progress": { "progress": 126000, "total": 126000, "percent": 100 }, "issuetype": { "self": "https://sd.dogma.ru/rest/api/2/issuetype/10005", "id": "10005", "description": "Простая задача, не требующая согласования", "iconUrl": "https://sd.dogma.ru/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype", "name": "Задача", "subtask": false, "avatarId": 10318 }, "timespent": 126000, "project": { "self": "https://sd.dogma.ru/rest/api/2/project/11700", "id": "11700", "key": "DEV1C", "name": "1С: Разработка по 1С", "projectTypeKey": "software", "avatarUrls": { "48x48": "https://sd.dogma.ru/secure/projectavatar?pid=11700&avatarId=19200", "24x24": "https://sd.dogma.ru/secure/projectavatar?size=small&pid=11700&avatarId=19200", "16x16": "https://sd.dogma.ru/secure/projectavatar?size=xsmall&pid=11700&avatarId=19200", "32x32": "https://sd.dogma.ru/secure/projectavatar?size=medium&pid=11700&avatarId=19200" }, "projectCategory": { "self": "https://sd.dogma.ru/rest/api/2/projectCategory/10001", "id": "10001", "description": "Проекты, связанные с операционной деятельностью", "name": "ОПЕР" } }, "aggregatetimespent": 126000, "customfield_12601": null, "customfield_10700": "0|i05tlz:", "customfield_10701": null, "resolutiondate": null, "customfield_10705": null, "customfield_10706": "{summaryBean=com.atlassian.jira.plugin.devstatus.rest.SummaryBean@493bf33f[summary={pullrequest=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@186c0742[overall=PullRequestOverallBean{stateCount=0, state='OPEN', details=PullRequestOverallDetails{openCount=0, mergedCount=0, declinedCount=0}},byInstanceType={}], build=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@7f312be5[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BuildOverallBean@79f7556[failedBuildCount=0,successfulBuildCount=0,unknownBuildCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], review=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@3b9cb2f1[overall=com.atlassian.jira.plugin.devstatus.summary.beans.ReviewsOverallBean@7ea3c874[stateCount=0,state=,dueDate=,overDue=false,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], deployment-environment=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@8bbaa46[overall=com.atlassian.jira.plugin.devstatus.summary.beans.DeploymentOverallBean@74725bc2[topEnvironments=[],showProjects=false,successfulCount=0,count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], repository=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@2aa77487[overall=com.atlassian.jira.plugin.devstatus.summary.beans.CommitOverallBean@4a27f9cf[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}], branch=com.atlassian.jira.plugin.devstatus.rest.SummaryItemBean@1f1b8357[overall=com.atlassian.jira.plugin.devstatus.summary.beans.BranchOverallBean@79d1773d[count=0,lastUpdated=,lastUpdatedTimestamp=],byInstanceType={}]},errors=[],configErrors=[]], devSummaryJson={\"cachedValue\":{\"errors\":[],\"configErrors\":[],\"summary\":{\"pullrequest\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":\"OPEN\",\"details\":{\"openCount\":0,\"mergedCount\":0,\"declinedCount\":0,\"total\":0},\"open\":true},\"byInstanceType\":{}},\"build\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"failedBuildCount\":0,\"successfulBuildCount\":0,\"unknownBuildCount\":0},\"byInstanceType\":{}},\"review\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"stateCount\":0,\"state\":null,\"dueDate\":null,\"overDue\":false,\"completed\":false},\"byInstanceType\":{}},\"deployment-environment\":{\"overall\":{\"count\":0,\"lastUpdated\":null,\"topEnvironments\":[],\"showProjects\":false,\"successfulCount\":0},\"byInstanceType\":{}},\"repository\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}},\"branch\":{\"overall\":{\"count\":0,\"lastUpdated\":null},\"byInstanceType\":{}}}},\"isStale\":false}}", "customfield_10707": null, "workratio": -1, "customfield_10708": null, "customfield_10709": null, "watches": { "self": "https://sd.dogma.ru/rest/api/2/issue/DEV1C-339/watchers", "watchCount": 5, "isWatching": true }, "created": "2025-05-20T15:52:14.000+0000", "customfield_12200": null, "customfield_12600": null, "customfield_11105": null, "customfield_11106": null, "customfield_11107": null, "customfield_11900": "2025-05-28", "customfield_11901": "2025-05-30", "updated": "2025-07-23T09:15:15.000+0000", "timeoriginalestimate": null, "description": "В 1С базах некоторые пользователи (служебные), для не должна действовать политика автоматической или принудительной смены пароля.\r\n * Исключить служебных пользователей из регламентной смены пароль\r\n\r\nДля служебных пользователей:\r\n * Можно ли сделать отдельные настройки входа для обычных пользователей и для служебных\r\n\r\nДля справки:\r\n * [https://infostart.ru/1c/tools/169917/]\r\n * [https://infostart.ru/1c/tools/2233223/]\r\n * [https://infostart.ru/1c/tools/2352908/]", "customfield_11100": null, "customfield_11101": null, "customfield_11102": null, "customfield_11103": null, "customfield_11104": null, "summary": "Доработка системы применения правил установки паролей", "customfield_10120": null, "customfield_10000": [], "customfield_10121": null, "customfield_10001": null, "customfield_10122": null, "customfield_10002": null, "customfield_12300": null, "customfield_10003": null, "customfield_10004": null, "customfield_10115": null, "customfield_11204": null, "customfield_11601": null, "customfield_10116": null, "customfield_11205": null, "environment": null, "customfield_10117": null, "customfield_10118": null, "customfield_10119": null, "duedate": null } } ] } ``` ## Полезные ссылки - [Наша версия - основное](https://docs.atlassian.com/software/jira/docs/api/REST/9.12.0/#api/2/search-searchUsingSearchRequest) - [Расширенное описание](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issue-search/#api-group-issue-search) - [Авторизация](https://developer.atlassian.com/cloud/jira/platform/basic-auth-for-rest-apis/) - [JQL (официальная дока)](https://support.atlassian.com/jira-service-management-cloud/docs/use-advanced-search-with-jira-query-language-jql/) - [JQL (хабр)](https://habr.com/ru/companies/raiffeisenbank/articles/449932/) - [Insight Atlassian](https://docs.atlassian.com/assets/REST/9.1.16/#object-findObject) - [Insight Cloud](https://developer.atlassian.com/cloud/assets/rest/api-group-object/#api-group-object)