Dcove
  1. master
Dcove
  • master
    • Stores**
      POST
    • Article Batches
      POST
    • Article Eans
      POST
    • Article Master**
      POST
    • Article Supplier Mapping**
      POST
    • DC - Store Mapping**
      POST
    • Manufacturer
      POST
    • Purchase Returns
      POST
    • Wastages
      POST
    • Supplier Master**
      POST
    • Supplier Contacts
      POST
    • Production Pipeline Execution
      POST
    • Kit Master
      POST
    • Bulk Repack Master
      POST
    • Article Uom Master
      POST
    • Supplier WalkIns
      POST
    • Article Pricing Master
      POST
    • Article Store Limits
      POST
    • Current Stock**
      POST
    • Stores As Suppliers
      POST
    • Stock Location**
      POST
    • Customer Master
      POST
    • Company Group
      POST
    • Hierarchy Headers**
      POST
    • Hierarchy Details**
      POST
    • Article Hierarchy**
      POST
    • Article Attributes
      POST
    • ArticleGateKeeperMargin
      POST
  • transactional
    • Stock Ledger**
    • Bill Header**
    • Bill Detail**
    • Invoices Header**
    • Invoices Detail**
    • Supplier Invoice Acknowledgement
    • Purchase Order Header**
    • Purchase Order Detail
    • Transfer In Header**
    • Transfer In Detail**
    • Transfer Out Header**
    • Transfer Out Detail**
    • Transfer Advice Header
    • Transfer Advice Detail
  1. master

Article Master**

POST
/master/article_master/
master
The article master - Captures article definition, activation status, replenishment modes, pricing and other important master configuration.

Request

Header Params
X-SYNC-TOKEN
string 
required

<sync_token>

Accept-Encoding
string 
required
gzip (mandatory)
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
This flag deactivates purchase of the article at your stores.
allow_sales
boolean 
required
This flag deactivates sales of the article at your stores.
created_at
string <date-time>
required
min_shelf_fit
number <double>
optional
If set, reorder will always ensure this amount of stock is available in your store for the article.
items_per_unit
number <double>
optional
If the item is a packed article or has several items within it. Eg. Pharmaceutical strips can have multiple tablets.
gatekeeper_margin
number <double>
optional
Value as a percentage. Eg. 6 means 6%.
hsn_code
string 
optional
preparation_type
enum<string> 
required
K: Represents a Kit Article.
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
Successful Sync
Body
status
string 
optional
message
string 
optional
Example
{
  "status": "string",
  "message": "string"
}
🟠400Bad Request
🟠403Forbidden
🟠405405
Modified at 2025-02-10 12:39:04
Previous
Article Eans
Next
Article Supplier Mapping**
Built with