2.0info: 0.1.1 ig5_notasaida description: Agronegócio – Integração G5 – Nota fiscal de saida (fixação) x-senior-domain: erp_agr x-senior-domain-path: erp_agr x-senior-service-path: ig5_notasaida contact: name: Senior X Platform url: http://dev.senior.com.br email: seniorx-dev@senior.com.brhost: platform.senior.com.br /t/senior.com.br/bridge/1.0/rest/erp_agrsecurityDefinitions: APIKeyHeader: type: apiKey in: header name: Authorizationsecurity: – APIKeyHeader: [] – application/json – application/jsonpaths: /ig5_notasaida/queries/getMetadata: post: description: Default getMetadata query. Every service must handle this command and return metadata in the format requested. tags: – Queries x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object properties: metadataFormat: type: string description: responses: 200: description: Ok schema: type: object required: – metadata properties: metadata: type: string description: default: description: Error response schema: #/definitions/genericError get: description: Default getMetadata query. Every service must handle this command and return metadata in the format requested. tags: – Queries x-senior-visibility: PRIVATE parameters: – name: metadataFormat in: query type: string responses: 200: description: Ok schema: type: object required: – metadata properties: metadata: type: string description: default: description: Error response schema: #/definitions/genericError /ig5_notasaida/queries/getDependencies: post: description: Returns a list with all dependencies from this service, along with their respective versions tags: – Queries x-senior-visibility: PUBLIC responses: 200: description: Ok schema: type: object required: – dependencies properties: dependencies: type: array items: type: object allOf: – #/definitions/dependency minimum: 1 description: List with this service dependencies default: description: Error response schema: #/definitions/genericError get: description: Returns a list with all dependencies from this service, along with their respective versions tags: – Queries x-senior-visibility: PUBLIC responses: 200: description: Ok schema: type: object required: – dependencies properties: dependencies: type: array items: type: object allOf: – #/definitions/dependency minimum: 1 description: List with this service dependencies default: description: Error response schema: #/definitions/genericError /ig5_notasaida/actions/gerarNota: post: description: Gerar nota fiscal de saida tags: – Actions x-senior-visibility: PRIVATE parameters: – name: input in: body required: true schema: type: object required: – codigoEmpresa – codigoFilial – codigoPessoa – codigoSerie – dataEmissao – codigoTransacao – valorLiquido properties: codigoEmpresa: type: integer format: int64 description: Código da Empresa codigoFilial: type: integer format: int64 description: Código da Filial codigoPessoa: type: integer format: int64 description: Código da Pessoa (Cliente/Fornecedor) codigoTransportadora: type: integer format: int64 description: Código da transportadora numeroNota: type: integer format: int64 description: Numero da nóta codigoSerie: type: string description: Numero de séri dataEmissao: type: string format: date description: Data emissão codigoTransacao: type: string description: Código transação pesoBruto: type: number format: double description: Peso Bruto valorLiquido: type: number format: double description: Valor liquido valorFinanceiro: type: number format: double description: Valor financeiro pesoLiquido: type: number format: double description: Peos liquido da nota itens: type: array items: type: object allOf: – #/definitions/recNotaSaidaItens description: Itens da nota responses: 200: description: Ok schema: type: object required: – codigoEmpresa – codigoFilial – codigoPessoa properties: codigoEmpresa: type: integer format: int64 description: Código da empresa codigoFilial: type: integer format: int64 description: Código da filial codigoPessoa: type: integer format: int64 description: Código do Fornecedor numeroNota: type: integer format: int64 description: Numero da nota de saida codigoSerie: type: string description: Código da série da nota fiscal de saida default: description: Error response schema: #/definitions/genericError definitions: userNotificationKind: description: User notification kind. type: string enum: – Operational – Management – News userNotificationPriority: description: User notification priority. type: string enum: – Error – Alert – None eventEmailFormat: description: Format of the email type: string enum: – HTML – PLAIN_TEXT recNotaSaidaItens: description: Itens da nota de saida type: object required: – sequenciaItem – codigoProduto – codigoDerivacao – codigoDeposito – quantidade – precoUnitario – valorLiquido – codigoTransacao properties: sequenciaItem: type: integer format: int64 description: Sequencia do item codigoProduto: type: string description: Código do produto codigoDerivacao: type: string description: Código da derivação codigoDeposito: type: string description: Código do depósito pesoBruto: type: number format: double description: Peso Bruto pesoLiquido: type: number format: double description: Peso Liquido quantidade: type: number format: double description: Quantidade precoUnitario: type: number format: double description: Preço Unitario valorLiquido: type: number format: double description: Valor Liquido codigoTransacao: type: string description: Transação utilizada no produto notifyUserEventPayload: description: Represents a regular user event notification payload discriminator: _discriminator type: object required: – notificationKind – notificationPriority – notificationSubject – notificationContent – sourceDomain – sourceService – destinationUser – _discriminator properties: notificationOrigin: type: string description: Origin of notification. Free text. Optional. notificationKind: type: string allOf: – #/definitions/userNotificationKind description: Notification kind. notificationPriority: type: string allOf: – #/definitions/userNotificationPriority description: Notification priority. notificationSubject: type: string description: Notification subject. notificationContent: type: string description: Notification content. sourceDomain: type: string description: Domain that generates the notification. sourceService: type: string description: Service that generates the notification. destinationUser: type: string description: Username of the destination user. link: type: string description: Notification link _discriminator: type: string description: emailNotifyUserEventPayload: description: Represents an email notification payload allOf: – #/definitions/notifyUserEventPayload – type: object required: – from properties: from: type: string description: Email sender address sendTo: type: array items: type: string description: Additional recipients to send the email to format: type: string allOf: – #/definitions/eventEmailFormat description: Email format pushNotifyUserEventPayload: description: Represents a push notification payload allOf: – #/definitions/notifyUserEventPayload – type: object required: – applicationId properties: applicationId: type: string description: Apple/Google application id dependency: description: Represents a service dependency type: object required: – domain – service – version properties: domain: type: string description: Domain of the dependency service service: type: string description: Name of the dependency service type: string description: Version of the dependency service genericError: properties: message: type: string description: Messaging describing the error. reason: type: string description: A symbolic code identifying the category of the reason of the error. enum: – BAD_REQUEST – UNAUTHORIZED – PAYMENT_REQUIRED – FORBIDDEN – OBJECT_NOT_FOUND – REQUEST_TIMEOUT – GONE – UNPROCESSABLE – INTERNAL_ERROR – NOT_IMPLEMENTED – SERVICE_UNAVAILABLE – INSUFFICIENT_STORAGE