openapi: 3.0.3 info: title: platform/services/domain/service-proto description: Domain Service version: 3.6.0 paths: /domain-service/v1/push_mail/enabled: get: tags: - DomainService description: Получение статуса подключения PUSH (глобального) operationId: IsPushTokenEnabled parameters: - name: Phone in: header schema: type: string - name: app_name in: query schema: type: string - name: device_id.value in: query description: The string value. schema: type: string responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/IsPushTokenEnabledRsp' post: tags: - DomainService description: Сохранение статуса подключения PUSH (глобального) operationId: SetPushTokenEnabled requestBody: content: application/json: schema: $ref: '#/components/schemas/SetPushTokenEnabledReq' required: true responses: "200": description: OK content: application/json: schema: $ref: '#/components/schemas/SetPushTokenEnabledRsp' components: schemas: IsPushTokenEnabledRsp: type: object properties: result: type: boolean setPushTokenEnabledRsp: $ref: '#/components/schemas/SetPushTokenEnabledRsp' SetPushTokenEnabledReq: type: object properties: app_name: type: string enabled: type: boolean device_id: $ref: '#/components/schemas/StringValue' StringValue: type: object properties: value: type: string description: The string value. description: Wrapper message for `string`. The JSON representation for `StringValue` is JSON string. SetPushTokenEnabledRsp: type: object properties: result: type: boolean