Menu

Get All Carts

This endpoint gets all the carts.
To call any /carts endpoints, you need to use a JWT token or an intent token for authorization.

GET https://api-staging-v2.logyx.it/v1/carts

Response

{
    "code": 200,
    "message": "OK; carts found.",
    "data": [
        {
            "default": "boolean",
            "reference": "string",
            "cart_id": "string"
        }
    ],
    "links": {},
    "errors": []
}

Possible responses


200 OK; Carts found.

400 Carts not found

403 Forbidden

Menu