- 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/location/get
POST
/inventory/location/get
Request
Body Params application/json
domain
string
required
api_key
string
required
auth_timestamp
integer
required
auth_signature
string
required
location_id
integer
optional
filter_name
string
optional
filter_date_modified
string
optional
filter_deleted
boolean
optional
page
integer
optional
sort
string
optional
order
string
optional
limit
integer
optional
Example
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"location_id": 0,
"filter_name": "string",
"filter_date_modified": "string",
"filter_deleted": true,
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
🟢200Success
application/json
Body
error
array[string]
optional
total
integer
optional
locations
array [object {6}]
optional
location_id
integer
required
name
string
required
stock_warning
integer
required
stock_danger
integer
required
date_modified
string
required
deleted
boolean
optional
Example
{
"error": [
"string"
],
"total": 0,
"locations": [
{
"location_id": 0,
"name": "string",
"stock_warning": 0,
"stock_danger": 0,
"date_modified": "string",
"deleted": true
}
]
}
Modified at 2024-10-20 08:52:02