Find Item By ID
Find cart item using the :id
. This endpoint allows you to find cart item of the client by ID.
GET /api/v1/client/cart/{id}
Path param
authorization : *bearer
REQUEST BODY SCHEMA: application/json
Name | Description | Required | Type |
---|---|---|---|
id | The id of the item | Required | string |
Response
Code | Description |
---|---|
201 | Details of a cart item given an id |
409 | Unauthorized |
Response Sample
Content type
application/json
[
{
"statusCode": 200,
"success": true,
"data": [
+ {...}
]
}
...
]