POST cart/GetCartList
Request Information
URI Parameters
None.
Body Parameters
iAddToCart| Name | Description | Type | Additional information |
|---|---|---|---|
| cartId | globally unique identifier |
None. |
|
| voucherId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| qty | integer |
None. |
|
| createdId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"cartId": "99017bf7-2bf7-4fd5-bbb4-0a8c94f5413a",
"voucherId": "df12d05d-f00c-472d-975a-3fefe146feaa",
"UserId": "d6a9a9a9-78ba-44a5-b2bd-19a5beac20e2",
"qty": 4,
"createdId": "sample string 5"
}
Response Information
Resource Description
oGetCartListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Records | Collection of oGetCartList |
None. |
|
| StatusCode | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Records": [
{
"cartid": "sample string 1",
"voucherid": "sample string 2",
"voucherCode": "sample string 3",
"voucherName": "sample string 4",
"image": "sample string 5",
"currency": "sample string 6",
"price": 7.1,
"qty": 8,
"amount": 9.1
},
{
"cartid": "sample string 1",
"voucherid": "sample string 2",
"voucherCode": "sample string 3",
"voucherName": "sample string 4",
"image": "sample string 5",
"currency": "sample string 6",
"price": 7.1,
"qty": 8,
"amount": 9.1
}
],
"StatusCode": true,
"Message": "sample string 2"
}