POST api/Order/PlaceOrderWithClaim
Request Information
URI Parameters
None.
Body Parameters
PlaceOrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderPaymentId | integer |
None. |
|
| OrderId | integer |
None. |
|
| PaymentProviderType | string |
None. |
|
| PaymentProviderId | integer |
None. |
|
| PaymentProviderName | string |
None. |
|
| PaymentMethod | string |
None. |
|
| PaymentDate | date |
None. |
|
| PaymentAmount | decimal number |
None. |
|
| PaymentRef | string |
None. |
|
| PaymentOauth | string |
None. |
|
| PaymentOrderRef | string |
None. |
|
| PaymentReqOrderRef | string |
None. |
|
| PaymentMessage | string |
None. |
|
| Status | string |
None. |
|
| TimeSlotId | integer |
None. |
|
| OrderChanel | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"orderPaymentId": 1,
"orderId": 1,
"paymentProviderType": "sample string 2",
"paymentProviderId": 1,
"paymentProviderName": "sample string 3",
"paymentMethod": "sample string 4",
"paymentDate": "2025-12-11T20:15:58.927894+05:30",
"paymentAmount": 1.0,
"paymentRef": "sample string 5",
"paymentOauth": "sample string 6",
"paymentOrderRef": "sample string 7",
"paymentReqOrderRef": "sample string 8",
"paymentMessage": "sample string 9",
"status": "sample string 10",
"timeSlotId": 1,
"orderChanel": "sample string 11"
}
application/xml, text/xml
Sample:
<PlaceOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XeniaEStoreAPI.Resource"> <OrderChanel>sample string 11</OrderChanel> <OrderId>1</OrderId> <OrderPaymentId>1</OrderPaymentId> <PaymentAmount>1</PaymentAmount> <PaymentDate>2025-12-11T20:15:58.927894+05:30</PaymentDate> <PaymentMessage>sample string 9</PaymentMessage> <PaymentMethod>sample string 4</PaymentMethod> <PaymentOauth>sample string 6</PaymentOauth> <PaymentOrderRef>sample string 7</PaymentOrderRef> <PaymentProviderId>1</PaymentProviderId> <PaymentProviderName>sample string 3</PaymentProviderName> <PaymentProviderType>sample string 2</PaymentProviderType> <PaymentRef>sample string 5</PaymentRef> <PaymentReqOrderRef>sample string 8</PaymentReqOrderRef> <Status>sample string 10</Status> <TimeSlotId>1</TimeSlotId> </PlaceOrderRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | string |
None. |
|
| Data | Object |
None. |
|
| Message | string |
None. |
|
| Type | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"data": {},
"message": "sample string 3",
"type": 4
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XeniaEStoreAPI.Controllers.Resource"> <Data /> <Message>sample string 3</Message> <Status>sample string 1</Status> <Type>4</Type> </APIResponse>