- 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/brand/get
POST
/inventory/brand/get
Request
Body Params application/json
domain
string
required
api_key
string
required
auth_timestamp
integer
required
auth_signature
string
required
brand_id
integer
optional
filter_name
string
optional
filter_date_modified
string
optional
filter_deleted
boolean
optional
filter_channel_group_id
string
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",
"brand_id": 0,
"filter_name": "string",
"filter_date_modified": "string",
"filter_deleted": true,
"filter_channel_group_id": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
🟢200Success
application/json
Body
error
array[string]
optional
total
integer
optional
brands
array [object {6}]
optional
brand_id
integer
required
channel_group_id
integer
required
name
string
required
image
string
required
date_modified
string
required
deleted
boolean
optional
Example
{
"error": [
"string"
],
"total": 0,
"brands": [
{
"brand_id": 0,
"channel_group_id": 0,
"name": "string",
"image": "string",
"date_modified": "string",
"deleted": true
}
]
}
Modified at 2024-10-20 05:18:33