Menu

Get company by ID

This endpoint can get a companies information by ID.
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/{id}

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; company found.

404 No company found

Menu