Menu

Delete Supplier By Id

Delete a supplier by ID. Only available for admins.
To call any /suppliers/{id} endpoints, you need to use a JWT token or an API token for authorization.

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

Response

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

Possible responses


200 OK; Supplier deleted.

404 Supplier not found.

Menu