- master
- Stores**POST
- Article BatchesPOST
- Article EansPOST
- Article Master**POST
- Article Supplier Mapping**POST
- DC - Store Mapping**POST
- ManufacturerPOST
- Purchase ReturnsPOST
- WastagesPOST
- Supplier Master**POST
- Supplier ContactsPOST
- Production Pipeline ExecutionPOST
- Kit MasterPOST
- Bulk Repack MasterPOST
- Article Uom MasterPOST
- Supplier WalkInsPOST
- Article Pricing MasterPOST
- Article Store LimitsPOST
- Current Stock**POST
- Stores As SuppliersPOST
- Stock Location**POST
- Customer MasterPOST
- Company GroupPOST
- Hierarchy Headers**POST
- Hierarchy Details**POST
- Article Hierarchy**POST
- Article AttributesPOST
- ArticleGateKeeperMarginPOST
- transactional
Article Master**
POST
/master/article_master/
master
Request
Header Params
X-SYNC-TOKEN
string
required
<sync_token>
Accept-Encoding
string
required
Body Params application/json
array of:
article_id
string
required
store_id
string
required
alias
string
optional
name
string
required
short_name
string
optional
description
string
optional
manufacturer_id
string
required
allow_negative
boolean
required
replenishment_mode
enum<string>
required
Allowed values:
PAFTDSD
Default:
PA
allow_purchase
boolean
required
allow_sales
boolean
required
created_at
string <date-time>
required
min_shelf_fit
number <double>
optional
items_per_unit
number <double>
optional
gatekeeper_margin
number <double>
optional
hsn_code
string
optional
preparation_type
enum<string>
required
KI: Represents a Kit ingredient.
B: Represents a Bulk Article
R: Represents a repacked article from a bulk item.
T: Transactional items. Represents a normal article that is purchased/sold directly
Allowed values:
KKIBRT
Default:
T
Example
[
{
"article_id": "string",
"store_id": "string",
"alias": "string",
"name": "string",
"short_name": "string",
"description": "string",
"manufacturer_id": "string",
"allow_negative": true,
"replenishment_mode": "PA",
"allow_purchase": true,
"allow_sales": true,
"created_at": "2019-08-24T14:15:22Z",
"min_shelf_fit": 0,
"items_per_unit": 0,
"gatekeeper_margin": 0,
"hsn_code": "string",
"preparation_type": "T"
}
]
Request samples
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 'https://test.your-api-server.com/master/article_master/' \
--header 'X-SYNC-TOKEN;' \
--header 'Accept-Encoding;' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"article_id": "string",
"store_id": "string",
"alias": "string",
"name": "string",
"short_name": "string",
"description": "string",
"manufacturer_id": "string",
"allow_negative": true,
"replenishment_mode": "PA",
"allow_purchase": true,
"allow_sales": true,
"created_at": "2019-08-24T14:15:22Z",
"min_shelf_fit": 0,
"items_per_unit": 0,
"gatekeeper_margin": 0,
"hsn_code": "string",
"preparation_type": "T"
}
]'
Responses
🟢200OK
application/json
Body
status
string
optional
message
string
optional
Example
{
"status": "string",
"message": "string"
}
🟠400Bad Request
🟠403Forbidden
🟠405405
Modified at 2025-02-10 12:39:04