GET api/Order/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Order| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Oid | integer |
None. |
|
| CreateDateTimeUtc | date |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SuperAffiliateId | globally unique identifier |
None. |
|
| AffiliateId | globally unique identifier |
None. |
|
| ProductCode | string |
None. |
|
| SupplierId | integer |
None. |
|
| PaymentSourceTypeId | integer |
None. |
|
| PaymentSourceId | string |
None. |
|
| ParentTransactionId | globally unique identifier |
None. |
|
| IsClone | boolean |
None. |
|
| WalletTransactionId | globally unique identifier |
None. |
|
| AmountInCents | integer |
None. |
|
| OrderStatus | integer |
None. |
|
| SupplierResponseCode | string |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| ProductTarget | string |
None. |
|
| ProductSubTarget | string |
None. |
|
| ProductCommissionTypeCode | integer |
None. |
|
| Invoice | string |
None. |
|
| IsClosed | boolean |
None. |
|
| ClosedDateTimeUtc | date |
None. |
|
| SupplierCommissionAmountInCents | integer |
None. |
|
| AffiliateCommissionAmountInCents | integer |
None. |
|
| TimeStamp | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "8c7a427d-126a-44b8-a92e-0e623a0ee9ee",
"oid": 2,
"create-date-time-utc": "2026-02-20T11:35:47.7002948+00:00",
"customer-id": "7739c997-b253-4aea-be16-aa9bca6ed33d",
"super-affiliate-id": "28397918-4582-47f7-8ed8-17ab812cd247",
"affiliate-id": "a777078b-3e73-409b-926a-1041b1d5dee0",
"product-code": "sample string 7",
"supplier-id": 8,
"payment-source-type-id": 9,
"payment-source-id": "sample string 10",
"parent-transaction-id": "486bc90c-bb6f-48b8-8ef8-0036d55910e5",
"is-clone": true,
"wallet-transaction-id": "6200612e-f3ef-4fba-9a47-4ba9fd7d3c07",
"amount-in-cents": 13,
"order-status": 14,
"supplier-response-code": "sample string 15",
"product-id": "b5698461-c0e5-416a-9231-321f0b4dc916",
"product-target": "sample string 17",
"product-sub-target": "sample string 18",
"product-commission-type-code": 19,
"invoice": "sample string 20",
"is-closed": true,
"closed-date-time-utc": "2026-02-20T11:35:47.7002948+00:00",
"supplier-commission-amount-in-cents": 23,
"affiliate-commission-amount-in-cents": 24,
"time-stamp": "QEA="
}
application/xml, text/xml
Sample:
<Order xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caprica.Models"> <AffiliateCommissionAmountInCents>24</AffiliateCommissionAmountInCents> <AffiliateId>a777078b-3e73-409b-926a-1041b1d5dee0</AffiliateId> <AmountInCents>13</AmountInCents> <ClosedDateTimeUtc>2026-02-20T11:35:47.7002948+00:00</ClosedDateTimeUtc> <CreateDateTimeUtc>2026-02-20T11:35:47.7002948+00:00</CreateDateTimeUtc> <CustomerId>7739c997-b253-4aea-be16-aa9bca6ed33d</CustomerId> <Id>8c7a427d-126a-44b8-a92e-0e623a0ee9ee</Id> <Invoice>sample string 20</Invoice> <IsClone>true</IsClone> <IsClosed>true</IsClosed> <Oid>2</Oid> <OrderStatus>14</OrderStatus> <ParentTransactionId>486bc90c-bb6f-48b8-8ef8-0036d55910e5</ParentTransactionId> <PaymentSourceId>sample string 10</PaymentSourceId> <PaymentSourceTypeId>9</PaymentSourceTypeId> <ProductCode>sample string 7</ProductCode> <ProductCommissionTypeCode>19</ProductCommissionTypeCode> <ProductId>b5698461-c0e5-416a-9231-321f0b4dc916</ProductId> <ProductSubTarget>sample string 18</ProductSubTarget> <ProductTarget>sample string 17</ProductTarget> <SuperAffiliateId>28397918-4582-47f7-8ed8-17ab812cd247</SuperAffiliateId> <SupplierCommissionAmountInCents>23</SupplierCommissionAmountInCents> <SupplierId>8</SupplierId> <SupplierResponseCode>sample string 15</SupplierResponseCode> <TimeStamp>QEA=</TimeStamp> <WalletTransactionId>6200612e-f3ef-4fba-9a47-4ba9fd7d3c07</WalletTransactionId> </Order>