- 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
- Stock Ledger**POST
- Bill Header**POST
- Bill Detail**POST
- Invoices Header**POST
- Invoices Detail**POST
- Supplier Invoice AcknowledgementPOST
- Purchase Order Header**POST
- Purchase Order DetailPOST
- Transfer In Header**POST
- Transfer In Detail**POST
- Transfer Out Header**POST
- Transfer Out Detail**POST
- Transfer Advice HeaderPOST
- Transfer Advice DetailPOST
Transfer Advice Header
POST
/tx/transfer_advice_header/
transactional
Request
Query Params
full_sync
boolean
optional
Header Params
X-SYNC-TOKEN
string
required
<sync_token>
Accept-Encoding
string
required
Body Params application/json
array of:
tadvice_id
string
required
hq_sta_id
string
required
target_store
string
required
origin_store
string
required
transfer_advice_date
string <date>
required
item_count
number
required
Eg. If 5 pieces of article A and 7 pieces of article B are being transferred, this field should have 2 as the value as there are 2 unique articles.
po_ref
string
optional
transfer_advice_type
enum<string>
required
Allowed values:
TOTI
transfer_ref
string
required
created_at
string <date-time>
required
Example
[
{
"tadvice_id": "string",
"hq_sta_id": "string",
"target_store": "string",
"origin_store": "string",
"transfer_advice_date": "2019-08-24",
"item_count": 0,
"po_ref": "string",
"transfer_advice_type": "TO",
"transfer_ref": "string",
"created_at": "2019-08-24T14:15:22Z"
}
]
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/tx/transfer_advice_header/' \
--header 'X-SYNC-TOKEN;' \
--header 'Accept-Encoding;' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"tadvice_id": "string",
"hq_sta_id": "string",
"target_store": "string",
"origin_store": "string",
"transfer_advice_date": "2019-08-24",
"item_count": 0,
"po_ref": "string",
"transfer_advice_type": "TO",
"transfer_ref": "string",
"created_at": "2019-08-24T14:15:22Z"
}
]'
Responses
🟢200OK
application/json
Body
status
string
optional
message
string
optional
Example
{
"status": "string",
"message": "string"
}
🟠403Forbidden
🟠405405
Modified at 2025-02-10 12:39:04