Menu

Delete Cart Line by IDs

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/{cart_id}/{line_id}

Response

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

Possible responses


200 OK; Cart line deleted.

400 Cart was not found

403 Forbidden

Menu