Menu

Get all companies

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

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

Response

{
    "code": "int",
    "message": "string",
    "data": [
        {
            "email": "string",
            "name": "string",
            "contact_person": "string",
            "created_at": "string",
            "id": "int",
            "coc_number": "string",
            "vat_number": "string",
            "website": "string",
            "phone_number": "string"
        }
    ],
    "links": {},
    "errors": []
}

Possible responses


200 OK; companies found.

404 Companies not found

Menu