GET api/Values?razorpayOrderId={razorpayOrderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| razorpayOrderId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
OrderResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Header | OrderHeader |
None. |
|
| Items | Collection of OrderItem |
None. |
|
| Summary | OrderSummary |
None. |
Response Formats
application/json, text/json
Sample:
{
"Header": {
"OrderID": 1,
"OrderDate": "2025-12-05T20:12:18.014723-08:00",
"ApplicantFirstName": "sample string 3",
"ContactPersonEmailID": "sample string 4",
"CompanyName": "sample string 5",
"CompanyAddress": "sample string 6",
"ContactPersonNumber": "sample string 7",
"PaymentMethod": "sample string 8",
"ProjectName": "sample string 9",
"FlatName": "sample string 10",
"CustomerEmail": "sample string 11",
"ClientName": "sample string 12"
},
"Items": [
{
"ItemName": "sample string 1",
"Price": 2.0,
"Qty": 3,
"Total": 4.0
},
{
"ItemName": "sample string 1",
"Price": 2.0,
"Qty": 3,
"Total": 4.0
}
],
"Summary": {
"SubTotal": 1.0,
"CGST": 2.0,
"SGST": 3.0,
"TotalAmount": 4.0
}
}
application/xml, text/xml
Sample:
<OrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/dbKey2h.Models">
<Header>
<ApplicantFirstName>sample string 3</ApplicantFirstName>
<ClientName>sample string 12</ClientName>
<CompanyAddress>sample string 6</CompanyAddress>
<CompanyName>sample string 5</CompanyName>
<ContactPersonEmailID>sample string 4</ContactPersonEmailID>
<ContactPersonNumber>sample string 7</ContactPersonNumber>
<CustomerEmail>sample string 11</CustomerEmail>
<FlatName>sample string 10</FlatName>
<OrderDate>2025-12-05T20:12:18.014723-08:00</OrderDate>
<OrderID>1</OrderID>
<PaymentMethod>sample string 8</PaymentMethod>
<ProjectName>sample string 9</ProjectName>
</Header>
<Items>
<OrderItem>
<ItemName>sample string 1</ItemName>
<Price>2</Price>
<Qty>3</Qty>
<Total>4</Total>
</OrderItem>
<OrderItem>
<ItemName>sample string 1</ItemName>
<Price>2</Price>
<Qty>3</Qty>
<Total>4</Total>
</OrderItem>
</Items>
<Summary>
<CGST>2</CGST>
<SGST>3</SGST>
<SubTotal>1</SubTotal>
<TotalAmount>4</TotalAmount>
</Summary>
</OrderResponse>