- Introdução
- People
- Items
- POs
- Sales
- NFes
- NFSes
- Transactions
- Item Categories
- Warehouses
- Custom Fields
- Batches
- Webhooks
- Services
- Accounting
- CTes
- Cargos
- Inventory
- Tags
Movimentar estoque
POST
/inventory/move
Requisição
Parâmetros Bodyapplication/json
item
string
requerido
variation
string
opcional
warehouse
string
requerido
type
enum<string>
requerido
Valores permitidos:
EntradaSaída
qty
number
requerido
price
string
opcional
details
string
opcional
Exemplo
{
"item": "string",
"variation": "string",
"warehouse": "string",
"type": "Entrada",
"qty": 0,
"price": "string",
"details": "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 POST '/inventory/move' \
--header 'Content-Type: application/json' \
--data-raw '{
"item": "string",
"variation": "string",
"warehouse": "string",
"type": "Entrada",
"qty": 0,
"price": "string",
"details": "string"
}'
Respostas
🟢200Success
application/json
Body
success
boolean
opcional
message
string
opcional
Exemplo
{
"success": true,
"message": "string"
}
Modificado em 2025-06-06 21:30:55