Menu

Get Suppliers

Get all suppliers available to the current authenticated user.
To call any /suppliers endpoints, you need to use a JWT token or an API token for authorization.

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

Response

{
    "code": 200,
    "message": "OK; suppliers found.",
    "data": [
        {
            "contact_person": "string",
            "website": "string",
            "email": "string",
            "id": "int",
            "coc_number": "string",
            "phone_number": "string",
            "name": "string",
            "vat_number": "string"
        }
    ],
    "links": {},
    "errors": []
}

Possible responses


200 OK; Supplier(s) found.

404 No suppliers found.

Menu