Skip to main content

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


NameDescriptionRequiredType
idThe id of the item Requiredstring

Response

CodeDescription
201Details of a cart item given an id
409Unauthorized

Response Sample

Content type
application/json
[
{
"statusCode": 200,
"success": true,
"data": [
+ {...}
]
}
...
]