Endpoints openapi responsável pelo contexto de notas fiscais
Notas fiscais (v1)
Download OpenAPI description
Overview
Languages
Servers
https://api-v2.contaazul.com/
Mock server
https://developers.contaazul.com/_mock/open-api-docs/open-api-invoice/
- https://api-v2.contaazul.com/v1/notas-fiscais
- Mock serverhttps://developers.contaazul.com/_mock/open-api-docs/open-api-invoice/v1/notas-fiscais
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api-v2.contaazul.com/v1/notas-fiscais?data_inicial=string&data_final=string&pagina=1&tamanho_pagina=10&documento_tomador=string&numero_nota=string&id_venda=string' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/json
{ "itens": [ { … } ], "paginacao": { "pagina_atual": 1, "tamanho_pagina": 10, "total_itens": 50, "total_paginas": 5 } }
Bodyapplication/jsonrequired
Dados para vincular nota fiscal a mdfe
Chaves de acesso das notas fiscais vinculadas ao MDF-e
Example: ["42250323643586000108550010000001151606401726","42250323643586000108550010000001141054498495"]
- https://api-v2.contaazul.com/v1/notas-fiscais/vinculo-mdfe
- Mock serverhttps://developers.contaazul.com/_mock/open-api-docs/open-api-invoice/v1/notas-fiscais/vinculo-mdfe
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api-v2.contaazul.com/v1/notas-fiscais/vinculo-mdfe \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"chaves_acesso": [
"42250323643586000108550010000001151606401726",
"42250323643586000108550010000001141054498495"
],
"identificador": "345345",
"status": "ENCERRADO"
}'- https://api-v2.contaazul.com/v1/notas-fiscais/{chave}
- Mock serverhttps://developers.contaazul.com/_mock/open-api-docs/open-api-invoice/v1/notas-fiscais/{chave}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api-v2.contaazul.com/v1/notas-fiscais/{chave}' \
-H 'Authorization: YOUR_API_KEY_HERE'