- Introdução
- People
- Items
- POs
- Sales
- NFes
- NFSes
- Transactions
- Item Categories
- Warehouses
- Custom Fields
- Batches
- Webhooks
- Services
- Accounting
- CTes
Faturar um pedido
PUT
/sales/invoice/{id}
Sales
Requisição
Parâmetros Path
id
string
requerido
Parâmetros Bodyapplication/json
moveItems
boolean
opcional
moveComposition
boolean
opcional
warehouse
string
opcional
createTransactions
boolean
opcional
dateBilled
string
opcional
Exemplo
{
"moveItems": true,
"moveComposition": true,
"warehouse": "string",
"createTransactions": true,
"dateBilled": "string"
}
Exemplos de Requisição
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 PUT '/sales/invoice/' \
--header 'Content-Type: application/json' \
--data-raw '{
"moveItems": true,
"moveComposition": true,
"warehouse": "string",
"createTransactions": true,
"dateBilled": "string"
}'
Respostas
🟢200Success
application/json
Body
success
boolean
requerido
response
string
requerido
Exemplo
{
"success": true,
"response": "string"
}