Inventory
  1. RM
Inventory
  • Docs
    • 00. Autenticação
    • 01. Incluir Movimentação Especial
    • 02. Incluir Nota Fiscal de Entrada
    • 03. Cancelar Nota Fiscal de Entrada
    • 04. Gerar Lote de Garantia para Item da Nota Fiscal
    • 05. Incluir Fornecedor
    • 06. Consultar Materiais/Itens
    • 07. Incluir Material/Item
    • 08. Consultar Tipos de Item
    • 09. Incluir Tipo de Item
    • 10. Vincular Tipo de Item a Centro de Estoque
    • 11. Consultar Famílias
    • 12. Incluir Família de Itens
    • 13. Consultar Centros de Estoque
    • 14. Incluir Centro de Estoque
    • 15. Atualizar Centro de Estoque
    • 16. Consultar Centros Financeiros
    • 17. Incluir Centros Financeiros
  • RM
    • Incluir movimentação especial
      POST
    • Incluir nota fiscal de entrada
      POST
    • Cancelar nota fiscal de entrada
      POST
    • Gerar lote de garantia para item da nota fiscal
      POST
    • Incluir fornecedor
      POST
    • Consultar materiais
      GET
    • Incluir material
      POST
    • Consultar tipos de item
      GET
    • Incluir tipo de item
      POST
    • Vincular tipo de item a centro de estoque
      POST
    • Consultar famílias
      GET
    • Incluir família
      POST
    • Consultar centros de estoque
      GET
    • Incluir centro de estoque
      POST
    • Atualizar centro de estoque
      PATCH
    • Consultar centros financeiros
      GET
    • Incluir centros financeiros
      POST
  1. RM

Gerar lote de garantia para item da nota fiscal

POST
/nfe-lote-garantia
RM
Após a inserção de uma nota fiscal de entrada, este método pode ser usado para gerar um lote de garantia para um item da nota.
A nota deve ser identificada pelo seu número, série e fornecedor. O fornecedor por sua vez pode ser identificado pelo seu CNPJ, CPF ou nome.

Request

Body Params application/json
NUM_NOTA
string 
required
SERIE_NOTA
number 
required
NOME_FORNECEDOR
string 
required
CNPJ_FORNECEDOR
string 
optional
CPF_FORNECEDOR
string 
optional
COD_ITEM
string 
required
LOTE_PRODUTO
string 
required
DATA_VENCIMENTO
string 
required
Example
{
    "NUM_NOTA": "52332",
    "SERIE_NOTA": 1,
    "NOME_FORNECEDOR": "Jules",
    "CNPJ_FORNECEDOR": "13791529000137",
    "COD_ITEM": "00.568.4510",
    "LOTE_PRODUTO": "SR54678",
    "DATA_VENCIMENTO": "2025-04-16"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://middlewareestoque-homol.exati.com.br/nfe-lote-garantia' \
--header 'Content-Type: application/json' \
--data-raw '{
    "NUM_NOTA": "52332",
    "SERIE_NOTA": 1,
    "NOME_FORNECEDOR": "Jules",
    "CNPJ_FORNECEDOR": "13791529000137",
    "COD_ITEM": "00.568.4510",
    "LOTE_PRODUTO": "SR54678",
    "DATA_VENCIMENTO": "2025-04-16"
}'

Responses

🟢200OK
application/json
Lote de garantia incluído
Body
status
string 
optional
Examples
{
    "status": "success"
}
🟠400Bad Request
Previous
Cancelar nota fiscal de entrada
Next
Incluir fornecedor