Create Stock Transfer
POST /stock-transfers
Description
Create a new stock transfer between stores.
Authentication
Bearer Token
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {{token}} | Yes |
| Content-Type | application/json | Yes |
Request Body
{
"sourceStoreIdString": "f65f7a82-de6e-4a4f-b512-33db4339ae9f",
"targetStoreIdString": "5d49a10a-2004-4dfd-a37a-7248ee896f32",
"itemCode": "010",
"qty": 5,
"rate": 7.75,
"postingDate": "2026-04-21T10:30:00.000",
"companyIdString": "32202bdb-fd43-41e5-b9ed-863b33f74a61",
"notes": "Transfer requested for stock replenishment at Retail Store A"
}
| Field | Type | Required | Description |
|---|---|---|---|
sourceStoreIdString | string (UUID) | Yes | Source store ID |
targetStoreIdString | string (UUID) | Yes | Target store ID |
itemCode | string | Yes | Item code to transfer |
qty | number | Yes | Quantity to transfer |
rate | number | Yes | Unit rate/cost |
postingDate | string (ISO 8601) | Yes | Posting date |
companyIdString | string (UUID) | Yes | Company ID |
notes | string | No | Transfer notes |