Retrieve License User

Retrieves a single license user, if requesting manager has access permissions to it.

URL: /api/v1/license-users/{id}/ Method: GET

circle-info

Requesting manager must have access permissions to the specified user.

Success Response

Code: 200 OK

Response (application/json)
{
    "id": 2270,
    "last_login": null,
    "email": "[email protected]|tn",
    "true_email": "[email protected]",
    "created_at": "2021-08-24T07:22:27Z",
    "updated_at": "2021-10-14T07:47:48Z",
    "is_active": true,
    "is_manager": false,
    "initial_password": "5dH7Oqfq",
    "is_initial_password": true,
    "first_name": "",
    "last_name": "",
    "phone_number": "",
    "total_licenses": 1,
    "customer_accounts": []
}

Was this helpful?