GET api/General/OrderManage/GetOrderDetailForPartner?Id={Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
utblOrderDetailForPartner| Name | Description | Type | Additional information |
|---|---|---|---|
| PartnerOrderDetailID | integer |
None. |
|
| OrderID | string |
None. |
|
| ItemsNetAmt | decimal number |
None. |
|
| ItemsTaxPercent | integer |
None. |
|
| ItemsTaxAmt | decimal number |
None. |
|
| ItemsCouponDiscountAmt | decimal number |
None. |
|
| InHouseDeliveryEnabled | boolean |
None. |
|
| NetDeliveryFee | decimal number |
None. |
|
| DeliveryTaxPercent | integer |
None. |
|
| DeliveryTaxAmt | decimal number |
None. |
|
| DeliveryFeeDiscountAmt | decimal number |
None. |
|
| PlatformCutPercent | decimal number |
None. |
|
| PlatformCutAmt | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| TotalWithDelivery | decimal number |
None. |
|
| TaxTotalWithDelivery | decimal number |
None. |
|
| UserID | string |
None. |
|
| ServiceAdminstrationCharge | decimal number |
None. |
|
| ReferralContributionAmt | decimal number |
None. |
|
| EscrowContributionByDelivery | decimal number |
None. |
|
| EscrowContributionByDeliveryPercent | decimal number |
None. |
|
| CustomerNote | string |
None. |
|
| TransDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"PartnerOrderDetailID": 1,
"OrderID": "sample string 2",
"ItemsNetAmt": 3.0,
"ItemsTaxPercent": 4,
"ItemsTaxAmt": 5.0,
"ItemsCouponDiscountAmt": 1.0,
"InHouseDeliveryEnabled": true,
"NetDeliveryFee": 1.0,
"DeliveryTaxPercent": 1,
"DeliveryTaxAmt": 1.0,
"DeliveryFeeDiscountAmt": 1.0,
"PlatformCutPercent": 7.1,
"PlatformCutAmt": 8.0,
"Total": 9.0,
"TotalWithDelivery": 1.0,
"TaxTotalWithDelivery": 1.0,
"UserID": "sample string 10",
"ServiceAdminstrationCharge": 1.0,
"ReferralContributionAmt": 1.0,
"EscrowContributionByDelivery": 1.0,
"EscrowContributionByDeliveryPercent": 1.1,
"CustomerNote": "sample string 11",
"TransDate": "2025-12-07T10:00:58.4331461+05:30"
}
application/xml, text/xml
Sample:
<utblOrderDetailForPartner xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/General.Operations.Models"> <CustomerNote>sample string 11</CustomerNote> <DeliveryFeeDiscountAmt>1</DeliveryFeeDiscountAmt> <DeliveryTaxAmt>1</DeliveryTaxAmt> <DeliveryTaxPercent>1</DeliveryTaxPercent> <EscrowContributionByDelivery>1</EscrowContributionByDelivery> <EscrowContributionByDeliveryPercent>1.1</EscrowContributionByDeliveryPercent> <InHouseDeliveryEnabled>true</InHouseDeliveryEnabled> <ItemsCouponDiscountAmt>1</ItemsCouponDiscountAmt> <ItemsNetAmt>3</ItemsNetAmt> <ItemsTaxAmt>5</ItemsTaxAmt> <ItemsTaxPercent>4</ItemsTaxPercent> <NetDeliveryFee>1</NetDeliveryFee> <OrderID>sample string 2</OrderID> <PartnerOrderDetailID>1</PartnerOrderDetailID> <PlatformCutAmt>8</PlatformCutAmt> <PlatformCutPercent>7.1</PlatformCutPercent> <ReferralContributionAmt>1</ReferralContributionAmt> <ServiceAdminstrationCharge>1</ServiceAdminstrationCharge> <TaxTotalWithDelivery>1</TaxTotalWithDelivery> <Total>9</Total> <TotalWithDelivery>1</TotalWithDelivery> <TransDate>2025-12-07T10:00:58.4331461+05:30</TransDate> <UserID>sample string 10</UserID> </utblOrderDetailForPartner>