POST transfer/InserTransferEntry
Request Information
URI Parameters
None.
Body Parameters
InsertIOutwardVM| Name | Description | Type | Additional information |
|---|---|---|---|
| customerid | integer |
None. |
|
| InvoiceNo | string |
None. |
|
| OutwardType | string |
None. |
|
| ChallanNo | string |
None. |
|
| InvoiceDate | date |
None. |
|
| ChallanDate | date |
None. |
|
| StoreID | integer |
None. |
|
| FromStoreID | integer |
None. |
|
| ToStoreID | integer |
None. |
|
| TransferCheckerID | integer |
None. |
|
| TransferCheckDate | string |
None. |
|
| UserID | integer |
None. |
|
| Items | Collection of tblOutwardItemDetail |
None. |
Request Formats
application/json, text/json
Sample:
{
"customerid": 1,
"InvoiceNo": "sample string 2",
"OutwardType": "sample string 3",
"ChallanNo": "sample string 4",
"InvoiceDate": "2026-07-18T12:13:59.9372507+05:30",
"ChallanDate": "2026-07-18T12:13:59.9372507+05:30",
"StoreID": 7,
"FromStoreID": 8,
"ToStoreID": 9,
"TransferCheckerID": 1,
"TransferCheckDate": "sample string 10",
"UserID": 11,
"Items": [
{
"ID": 1,
"OutwardID": 2,
"ItemID": 3,
"Qty": 4.0,
"OkQty": 5.0,
"ScrapQty": 6.0,
"IsTransfer": true
},
{
"ID": 1,
"OutwardID": 2,
"ItemID": 3,
"Qty": 4.0,
"OkQty": 5.0,
"ScrapQty": 6.0,
"IsTransfer": true
}
]
}
application/xml, text/xml
Sample:
<InsertIOutwardVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarmoraInventory.Models">
<ChallanDate>2026-07-18T12:13:59.9372507+05:30</ChallanDate>
<ChallanNo>sample string 4</ChallanNo>
<FromStoreID>8</FromStoreID>
<InvoiceDate>2026-07-18T12:13:59.9372507+05:30</InvoiceDate>
<InvoiceNo>sample string 2</InvoiceNo>
<Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/VarmoraInventory">
<d2p1:tblOutwardItemDetail>
<d2p1:ID>1</d2p1:ID>
<d2p1:IsTransfer>true</d2p1:IsTransfer>
<d2p1:ItemID>3</d2p1:ItemID>
<d2p1:OkQty>5</d2p1:OkQty>
<d2p1:OutwardID>2</d2p1:OutwardID>
<d2p1:Qty>4</d2p1:Qty>
<d2p1:ScrapQty>6</d2p1:ScrapQty>
</d2p1:tblOutwardItemDetail>
<d2p1:tblOutwardItemDetail>
<d2p1:ID>1</d2p1:ID>
<d2p1:IsTransfer>true</d2p1:IsTransfer>
<d2p1:ItemID>3</d2p1:ItemID>
<d2p1:OkQty>5</d2p1:OkQty>
<d2p1:OutwardID>2</d2p1:OutwardID>
<d2p1:Qty>4</d2p1:Qty>
<d2p1:ScrapQty>6</d2p1:ScrapQty>
</d2p1:tblOutwardItemDetail>
</Items>
<OutwardType>sample string 3</OutwardType>
<StoreID>7</StoreID>
<ToStoreID>9</ToStoreID>
<TransferCheckDate>sample string 10</TransferCheckDate>
<TransferCheckerID>1</TransferCheckerID>
<UserID>11</UserID>
<customerid>1</customerid>
</InsertIOutwardVM>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status_Code | string |
None. |
|
| Status | string |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
|
| Error_Field | string |
None. |
|
| Api_Type | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status_Code": "sample string 1",
"Status": "sample string 2",
"Message": "sample string 3",
"Data": {},
"Error_Field": "sample string 5",
"Api_Type": "sample string 6"
}
application/xml, text/xml
Sample:
<JsonResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarmoraInventory.Models"> <Api_Type>sample string 6</Api_Type> <Data /> <Error_Field>sample string 5</Error_Field> <Message>sample string 3</Message> <Status>sample string 2</Status> <Status_Code>sample string 1</Status_Code> </JsonResponse>