GET 3dCartWebAPI/v1/Cart/{orderkey}
Get a specific cart
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderkey |
Order Key |
string |
Required |
Body Parameters
None.
Sample Request |
|
Response Information
Resource Description
Collection of Cart| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderKey |
database reference = orders.orderkey |
string |
String length: inclusive between 0 and 16 |
| OrderDate |
database reference = orders.odate |
date |
None. |
| OrderAmount |
database reference = orders.orderamount |
decimal number |
None. |
| OrderWeight |
Dynamically generated value. No database reference. |
decimal number |
None. |
| LastUpdate |
database reference = orders.last_update |
date |
None. |
| CheckoutURL |
Dynamically generated value. No database reference. |
string |
None. |
| CustomerId |
database reference = orders.ocustomerid |
integer |
None. |
| BillingFirstName |
database reference = orders.ofirstname |
string |
String length: inclusive between 0 and 100 |
| BillingLastName |
database reference = orders.olastname |
string |
String length: inclusive between 0 and 100 |
| BillingCompany |
database reference = orders.ocompany |
string |
String length: inclusive between 0 and 255 |
| BillingAddress |
database reference = orders.oaddress |
string |
String length: inclusive between 0 and 200 |
| BillingAddress2 |
database reference = orders.oaddress2 |
string |
String length: inclusive between 0 and 50 |
| BillingCity |
database reference = orders.ocity |
string |
String length: inclusive between 0 and 100 |
| BillingState |
database reference = orders.ostate |
string |
String length: inclusive between 0 and 100 |
| BillingZipCode |
database reference = orders.ozip |
string |
String length: inclusive between 0 and 20 |
| BillingCountry |
database reference = orders.ocountry |
string |
String length: inclusive between 0 and 50 |
| BillingPhoneNumber |
database reference = orders.ophone |
string |
String length: inclusive between 0 and 30 |
| BillingEmail |
database reference = orders.oemail |
string |
String length: inclusive between 0 and 100 |
| ShipmentFirstName |
database reference = orders.oshipfirstname |
string |
String length: inclusive between 0 and 100 |
| ShipmentLastName |
database reference = orders.oshiplastname |
string |
String length: inclusive between 0 and 50 |
| ShipmentCompany |
database reference = orders.oshipcompany |
string |
String length: inclusive between 0 and 200 |
| ShipmentAddress |
database reference = orders.oshipaddress |
string |
String length: inclusive between 0 and 255 |
| ShipmentAddress2 |
database reference = orders.oshipaddress2 |
string |
String length: inclusive between 0 and 50 |
| ShipmentCity |
database reference = orders.oshipcity |
string |
String length: inclusive between 0 and 50 |
| ShipmentState |
database reference = orders.oshipstate |
string |
String length: inclusive between 0 and 50 |
| ShipmentZipCode |
database reference = orders.oshipzip |
string |
String length: inclusive between 0 and 20 |
| ShipmentCountry |
database reference = orders.oshipcountry |
string |
String length: inclusive between 0 and 50 |
| ShipmentPhone |
database reference = orders.oshipphone |
string |
String length: inclusive between 0 and 50 |
| ShipmentEmail |
database reference = orders.oshipemail |
string |
String length: inclusive between 0 and 100 |
| CartItemList | Collection of CartItem |
None. |
Response Formats
application/json, text/json
[
{
"OrderKey": "sample string 1",
"OrderDate": "10/23/2025 18:59",
"OrderAmount": 1.1,
"OrderWeight": 1.1,
"LastUpdate": "10/23/2025 18:59",
"CheckoutURL": "sample string 2",
"CustomerId": 1,
"BillingFirstName": "sample string 3",
"BillingLastName": "sample string 4",
"BillingCompany": "sample string 5",
"BillingAddress": "sample string 6",
"BillingAddress2": "sample string 7",
"BillingCity": "sample string 8",
"BillingState": "sample string 9",
"BillingZipCode": "sample string 10",
"BillingCountry": "sample string 11",
"BillingPhoneNumber": "sample string 12",
"BillingEmail": "sample string 13",
"ShipmentFirstName": "sample string 14",
"ShipmentLastName": "sample string 15",
"ShipmentCompany": "sample string 16",
"ShipmentAddress": "sample string 17",
"ShipmentAddress2": "sample string 18",
"ShipmentCity": "sample string 19",
"ShipmentState": "sample string 20",
"ShipmentZipCode": "sample string 21",
"ShipmentCountry": "sample string 22",
"ShipmentPhone": "sample string 23",
"ShipmentEmail": "sample string 24",
"CartItemList": [
{
"CatalogID": 1,
"CartItemID": 1,
"ItemID": "sample string 1",
"ItemQuantity": 1.1,
"ItemDescription": "sample string 2",
"ItemUnitPrice": 1.1,
"ItemOptionPrice": 1.1,
"ItemDateAdded": "10/23/2025 18:59",
"ItemImage1": "sample string 3"
},
{
"CatalogID": 1,
"CartItemID": 1,
"ItemID": "sample string 1",
"ItemQuantity": 1.1,
"ItemDescription": "sample string 2",
"ItemUnitPrice": 1.1,
"ItemOptionPrice": 1.1,
"ItemDateAdded": "10/23/2025 18:59",
"ItemImage1": "sample string 3"
}
]
},
{
"OrderKey": "sample string 1",
"OrderDate": "10/23/2025 18:59",
"OrderAmount": 1.1,
"OrderWeight": 1.1,
"LastUpdate": "10/23/2025 18:59",
"CheckoutURL": "sample string 2",
"CustomerId": 1,
"BillingFirstName": "sample string 3",
"BillingLastName": "sample string 4",
"BillingCompany": "sample string 5",
"BillingAddress": "sample string 6",
"BillingAddress2": "sample string 7",
"BillingCity": "sample string 8",
"BillingState": "sample string 9",
"BillingZipCode": "sample string 10",
"BillingCountry": "sample string 11",
"BillingPhoneNumber": "sample string 12",
"BillingEmail": "sample string 13",
"ShipmentFirstName": "sample string 14",
"ShipmentLastName": "sample string 15",
"ShipmentCompany": "sample string 16",
"ShipmentAddress": "sample string 17",
"ShipmentAddress2": "sample string 18",
"ShipmentCity": "sample string 19",
"ShipmentState": "sample string 20",
"ShipmentZipCode": "sample string 21",
"ShipmentCountry": "sample string 22",
"ShipmentPhone": "sample string 23",
"ShipmentEmail": "sample string 24",
"CartItemList": [
{
"CatalogID": 1,
"CartItemID": 1,
"ItemID": "sample string 1",
"ItemQuantity": 1.1,
"ItemDescription": "sample string 2",
"ItemUnitPrice": 1.1,
"ItemOptionPrice": 1.1,
"ItemDateAdded": "10/23/2025 18:59",
"ItemImage1": "sample string 3"
},
{
"CatalogID": 1,
"CartItemID": 1,
"ItemID": "sample string 1",
"ItemQuantity": 1.1,
"ItemDescription": "sample string 2",
"ItemUnitPrice": 1.1,
"ItemOptionPrice": 1.1,
"ItemDateAdded": "10/23/2025 18:59",
"ItemImage1": "sample string 3"
}
]
}
]
application/xml, text/xml
<ArrayOfCart xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Cart>
<OrderKey>sample string 1</OrderKey>
<OrderDate>2025-10-23T18:59:23.686629-04:00</OrderDate>
<OrderAmount>1.1</OrderAmount>
<OrderWeight>1.1</OrderWeight>
<LastUpdate>2025-10-23T18:59:23.686629-04:00</LastUpdate>
<CheckoutURL>sample string 2</CheckoutURL>
<CustomerId>1</CustomerId>
<BillingFirstName>sample string 3</BillingFirstName>
<BillingLastName>sample string 4</BillingLastName>
<BillingCompany>sample string 5</BillingCompany>
<BillingAddress>sample string 6</BillingAddress>
<BillingAddress2>sample string 7</BillingAddress2>
<BillingCity>sample string 8</BillingCity>
<BillingState>sample string 9</BillingState>
<BillingZipCode>sample string 10</BillingZipCode>
<BillingCountry>sample string 11</BillingCountry>
<BillingPhoneNumber>sample string 12</BillingPhoneNumber>
<BillingEmail>sample string 13</BillingEmail>
<ShipmentFirstName>sample string 14</ShipmentFirstName>
<ShipmentLastName>sample string 15</ShipmentLastName>
<ShipmentCompany>sample string 16</ShipmentCompany>
<ShipmentAddress>sample string 17</ShipmentAddress>
<ShipmentAddress2>sample string 18</ShipmentAddress2>
<ShipmentCity>sample string 19</ShipmentCity>
<ShipmentState>sample string 20</ShipmentState>
<ShipmentZipCode>sample string 21</ShipmentZipCode>
<ShipmentCountry>sample string 22</ShipmentCountry>
<ShipmentPhone>sample string 23</ShipmentPhone>
<ShipmentEmail>sample string 24</ShipmentEmail>
<CartItemList>
<CartItem>
<CatalogID>1</CatalogID>
<CartItemID>1</CartItemID>
<ItemID>sample string 1</ItemID>
<ItemQuantity>1.1</ItemQuantity>
<ItemDescription>sample string 2</ItemDescription>
<ItemUnitPrice>1.1</ItemUnitPrice>
<ItemOptionPrice>1.1</ItemOptionPrice>
<ItemDateAdded>2025-10-23T18:59:23.686629-04:00</ItemDateAdded>
<ItemImage1>sample string 3</ItemImage1>
</CartItem>
<CartItem>
<CatalogID>1</CatalogID>
<CartItemID>1</CartItemID>
<ItemID>sample string 1</ItemID>
<ItemQuantity>1.1</ItemQuantity>
<ItemDescription>sample string 2</ItemDescription>
<ItemUnitPrice>1.1</ItemUnitPrice>
<ItemOptionPrice>1.1</ItemOptionPrice>
<ItemDateAdded>2025-10-23T18:59:23.686629-04:00</ItemDateAdded>
<ItemImage1>sample string 3</ItemImage1>
</CartItem>
</CartItemList>
</Cart>
<Cart>
<OrderKey>sample string 1</OrderKey>
<OrderDate>2025-10-23T18:59:23.686629-04:00</OrderDate>
<OrderAmount>1.1</OrderAmount>
<OrderWeight>1.1</OrderWeight>
<LastUpdate>2025-10-23T18:59:23.686629-04:00</LastUpdate>
<CheckoutURL>sample string 2</CheckoutURL>
<CustomerId>1</CustomerId>
<BillingFirstName>sample string 3</BillingFirstName>
<BillingLastName>sample string 4</BillingLastName>
<BillingCompany>sample string 5</BillingCompany>
<BillingAddress>sample string 6</BillingAddress>
<BillingAddress2>sample string 7</BillingAddress2>
<BillingCity>sample string 8</BillingCity>
<BillingState>sample string 9</BillingState>
<BillingZipCode>sample string 10</BillingZipCode>
<BillingCountry>sample string 11</BillingCountry>
<BillingPhoneNumber>sample string 12</BillingPhoneNumber>
<BillingEmail>sample string 13</BillingEmail>
<ShipmentFirstName>sample string 14</ShipmentFirstName>
<ShipmentLastName>sample string 15</ShipmentLastName>
<ShipmentCompany>sample string 16</ShipmentCompany>
<ShipmentAddress>sample string 17</ShipmentAddress>
<ShipmentAddress2>sample string 18</ShipmentAddress2>
<ShipmentCity>sample string 19</ShipmentCity>
<ShipmentState>sample string 20</ShipmentState>
<ShipmentZipCode>sample string 21</ShipmentZipCode>
<ShipmentCountry>sample string 22</ShipmentCountry>
<ShipmentPhone>sample string 23</ShipmentPhone>
<ShipmentEmail>sample string 24</ShipmentEmail>
<CartItemList>
<CartItem>
<CatalogID>1</CatalogID>
<CartItemID>1</CartItemID>
<ItemID>sample string 1</ItemID>
<ItemQuantity>1.1</ItemQuantity>
<ItemDescription>sample string 2</ItemDescription>
<ItemUnitPrice>1.1</ItemUnitPrice>
<ItemOptionPrice>1.1</ItemOptionPrice>
<ItemDateAdded>2025-10-23T18:59:23.686629-04:00</ItemDateAdded>
<ItemImage1>sample string 3</ItemImage1>
</CartItem>
<CartItem>
<CatalogID>1</CatalogID>
<CartItemID>1</CartItemID>
<ItemID>sample string 1</ItemID>
<ItemQuantity>1.1</ItemQuantity>
<ItemDescription>sample string 2</ItemDescription>
<ItemUnitPrice>1.1</ItemUnitPrice>
<ItemOptionPrice>1.1</ItemOptionPrice>
<ItemDateAdded>2025-10-23T18:59:23.686629-04:00</ItemDateAdded>
<ItemImage1>sample string 3</ItemImage1>
</CartItem>
</CartItemList>
</Cart>
</ArrayOfCart>