- Getting Started
- Extension
- Dashboard
- Module
- Report
- Total
- Integration
- Channel
- Extension
- Profile
- Inventory
- Addition
- Brand
- Category
- Deduction
- Flow
- Item
- Location
- Purchase Order
- Reservation
- Stock Take Job
- Supplier
- Transfer Job
- Transfer
- Sale
- Setting
inventory/reservation/add
POST
/inventory/reservation/add
Request
Body Params application/json
domain
string
required
api_key
string
required
auth_timestamp
integer
required
auth_signature
string
required
location_id
integer
required
comment
string
required
reservation
array [object {3}]
required
name
string
required
item_id
integer
required
quantity
integer
required
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"location_id": 0,
"comment": "string",
"reservation": [
{
"name": "string",
"item_id": 0,
"quantity": 0
}
]
}
Responses
🟢200Success
application/json
Body
error
array[string]
optional
success
boolean
optional
item_reservation_id
integer
optional
Example
{
"error": [
"string"
],
"success": true,
"item_reservation_id": 0
}
Modified at 2024-10-18 16:59:40