Users

Retrieve and update users for your account.

List Users

GET https://api.clients.icaal.co.uk/users

This endpoint will list all the users for your account.

Headers

Name
Type
Description

Authorization

string

Authenticate using the bearer token.

{
    "data": [
        {
            "id": 1,
            "first_name": "John",
            "last_name": "Doe",
            "email": "[email protected]",
            "status": "active",
            "created_at": "2021-01-01T00:00:00.000000Z",
            "updated_at": "2021-01-01T00:00:00.000000Z",
            "name": "John Doe",
            "pivot": {
                "dealer_id": 1,
                "user_id": 1,
                "job_title": "Administrator",
                "phone": "0800 000 0000",
                "phone_extension": "001",
                "mobile": "07000 000000",
                "role": "administrator",
                "owner": 1,
                "confirmed": 1
            }
        }
    ]
}

Last updated