POST api/Transactions?email={email}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
Required |
Body Parameters
Collection of Transactions| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemID | integer |
None. |
|
| Item | string |
None. |
|
| Type | string |
None. |
|
| Tax | string |
None. |
|
| Rate | decimal number |
None. |
|
| InvTypeID | integer |
None. |
|
| InvTypeName | string |
None. |
|
| QtyBehavior | integer |
None. |
|
| sRate | decimal number |
None. |
|
| Qty | decimal number |
None. |
|
| InvDate | date |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ItemID": 1,
"Item": "sample string 2",
"Type": "sample string 3",
"Tax": "sample string 4",
"Rate": 1.1,
"InvTypeID": 5,
"InvTypeName": "sample string 6",
"QtyBehavior": 7,
"sRate": 8.1,
"Qty": 9.1,
"InvDate": "2026-02-27T06:41:55.059645+05:30"
},
{
"ItemID": 1,
"Item": "sample string 2",
"Type": "sample string 3",
"Tax": "sample string 4",
"Rate": 1.1,
"InvTypeID": 5,
"InvTypeName": "sample string 6",
"QtyBehavior": 7,
"sRate": 8.1,
"Qty": 9.1,
"InvDate": "2026-02-27T06:41:55.059645+05:30"
}
]
text/html
Sample:
[{"ItemID":1,"Item":"sample string 2","Type":"sample string 3","Tax":"sample string 4","Rate":1.1,"InvTypeID":5,"InvTypeName":"sample string 6","QtyBehavior":7,"sRate":8.1,"Qty":9.1,"InvDate":"2026-02-27T06:41:55.059645+05:30"},{"ItemID":1,"Item":"sample string 2","Type":"sample string 3","Tax":"sample string 4","Rate":1.1,"InvTypeID":5,"InvTypeName":"sample string 6","QtyBehavior":7,"sRate":8.1,"Qty":9.1,"InvDate":"2026-02-27T06:41:55.059645+05:30"}]
application/xml, text/xml
Sample:
<ArrayOfTransactions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/freshdeal.Api.Controllers">
<Transactions>
<InvDate>2026-02-27T06:41:55.059645+05:30</InvDate>
<InvTypeID>5</InvTypeID>
<InvTypeName>sample string 6</InvTypeName>
<Item>sample string 2</Item>
<ItemID>1</ItemID>
<Qty>9.1</Qty>
<QtyBehavior>7</QtyBehavior>
<Rate>1.1</Rate>
<Tax>sample string 4</Tax>
<Type>sample string 3</Type>
<sRate>8.1</sRate>
</Transactions>
<Transactions>
<InvDate>2026-02-27T06:41:55.059645+05:30</InvDate>
<InvTypeID>5</InvTypeID>
<InvTypeName>sample string 6</InvTypeName>
<Item>sample string 2</Item>
<ItemID>1</ItemID>
<Qty>9.1</Qty>
<QtyBehavior>7</QtyBehavior>
<Rate>1.1</Rate>
<Tax>sample string 4</Tax>
<Type>sample string 3</Type>
<sRate>8.1</sRate>
</Transactions>
</ArrayOfTransactions>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.