POST Order/Process
Request Information
URI Parameters
None.
Body Parameters
OrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TType | integer |
None. |
|
| RowID | integer |
None. |
|
| UserID | integer |
None. |
|
| Products | Collection of OrderProductRequest |
None. |
|
| PaymentID | integer |
None. |
|
| AddressID | integer |
None. |
|
| OrderNumber | integer |
None. |
|
| CargoNumber | string |
None. |
|
| SumKdv | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| DeliveryState | integer |
None. |
|
| State | integer |
None. |
|
| CompanyNo | integer |
None. |
|
| CreateUserID | integer |
None. |
|
| CreateTime | date |
None. |
|
| CreateIP | string |
None. |
|
| UpdateUserID | integer |
None. |
|
| UpdateTime | date |
None. |
|
| UpdateIP | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TType": 1,
"RowID": 2,
"UserID": 3,
"Products": [
{
"ProductsID": 1,
"Price": 2.1,
"Quantity": 3,
"Kdv": 4.1,
"Total": 5.1
},
{
"ProductsID": 1,
"Price": 2.1,
"Quantity": 3,
"Kdv": 4.1,
"Total": 5.1
}
],
"PaymentID": 4,
"AddressID": 5,
"OrderNumber": 6,
"CargoNumber": "sample string 7",
"SumKdv": 8.1,
"Total": 9.1,
"DeliveryState": 10,
"State": 11,
"CompanyNo": 12,
"CreateUserID": 13,
"CreateTime": "2026-01-11T18:30:42.5302221+03:00",
"CreateIP": "sample string 15",
"UpdateUserID": 16,
"UpdateTime": "2026-01-11T18:30:42.5302221+03:00",
"UpdateIP": "sample string 18"
}
application/xml, text/xml
Sample:
<OrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ARSales.Api.View.Request.Order">
<AddressID>5</AddressID>
<CargoNumber>sample string 7</CargoNumber>
<CompanyNo>12</CompanyNo>
<CreateIP>sample string 15</CreateIP>
<CreateTime>2026-01-11T18:30:42.5302221+03:00</CreateTime>
<CreateUserID>13</CreateUserID>
<DeliveryState>10</DeliveryState>
<OrderNumber>6</OrderNumber>
<PaymentID>4</PaymentID>
<Products>
<OrderProductRequest>
<Kdv>4.1</Kdv>
<Price>2.1</Price>
<ProductsID>1</ProductsID>
<Quantity>3</Quantity>
<Total>5.1</Total>
</OrderProductRequest>
<OrderProductRequest>
<Kdv>4.1</Kdv>
<Price>2.1</Price>
<ProductsID>1</ProductsID>
<Quantity>3</Quantity>
<Total>5.1</Total>
</OrderProductRequest>
</Products>
<RowID>2</RowID>
<State>11</State>
<SumKdv>8.1</SumKdv>
<TType>1</TType>
<Total>9.1</Total>
<UpdateIP>sample string 18</UpdateIP>
<UpdateTime>2026-01-11T18:30:42.5302221+03:00</UpdateTime>
<UpdateUserID>16</UpdateUserID>
<UserID>3</UserID>
</OrderRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |