POST OrderDetail/Process
Request Information
URI Parameters
None.
Body Parameters
OrderDetailRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TType | integer |
None. |
|
| RowID | integer |
None. |
|
| OrderID | integer |
None. |
|
| ProductsID | integer |
None. |
|
| Quantity | integer |
None. |
|
| Price | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| Kdv | integer |
None. |
|
| KdvPrice | 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,
"OrderID": 3,
"ProductsID": 4,
"Quantity": 5,
"Price": 6.1,
"Total": 7.1,
"Kdv": 8,
"KdvPrice": 9.1,
"DeliveryState": 10,
"State": 11,
"CompanyNo": 12,
"CreateUserID": 13,
"CreateTime": "2026-01-11T18:32:17.3286925+03:00",
"CreateIP": "sample string 15",
"UpdateUserID": 16,
"UpdateTime": "2026-01-11T18:32:17.3286925+03:00",
"UpdateIP": "sample string 18"
}
application/xml, text/xml
Sample:
<OrderDetailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ARSales.Api.View.Request.OrderDetail"> <CompanyNo>12</CompanyNo> <CreateIP>sample string 15</CreateIP> <CreateTime>2026-01-11T18:32:17.3286925+03:00</CreateTime> <CreateUserID>13</CreateUserID> <DeliveryState>10</DeliveryState> <Kdv>8</Kdv> <KdvPrice>9.1</KdvPrice> <OrderID>3</OrderID> <Price>6.1</Price> <ProductsID>4</ProductsID> <Quantity>5</Quantity> <RowID>2</RowID> <State>11</State> <TType>1</TType> <Total>7.1</Total> <UpdateIP>sample string 18</UpdateIP> <UpdateTime>2026-01-11T18:32:17.3286925+03:00</UpdateTime> <UpdateUserID>16</UpdateUserID> </OrderDetailRequest>
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. |