Menu

Delete Cart by ID

This endpoint deletes the Cart by ID.
To call any /carts endpoints, you need to use a JWT token or an intent token for authorization.

DELETE https://api-staging-v2.logyx.it/v1/carts/{id}

Response

{
    "code": 200,
    "message": "OK; cart deleted.",
    "data": {},
    "links": {},
    "errors": []
}

Possible responses


200 OK; Cart deleted.

400 Cart was not found

403 Forbidden

Menu