POST cart/GetCartList
Request Information
URI Parameters
None.
Body Parameters
iAddToCartName | 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": "3aee7f4a-b6c0-4be7-87e9-fcfa2ac79f56", "voucherId": "ace99aa0-1295-4af4-8f73-38f8a044bc6b", "UserId": "1831f5d9-e725-4761-8fa7-5c148e69d111", "qty": 4, "createdId": "sample string 5" }
Response Information
Resource Description
oGetCartListResponseName | 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" }