Add manager to License User Group

Adds a manager to a single License user group.

  • URL: /api/v1/license-user-groups/{id}/add_manager/

  • Method: POST

Data example

Request body (application/json)
{
    "email": "[email protected]",
    "password": "Test1234!43210",
    "first_name": "First 1",
    "last_name": "Last 1"
}

Success Response

  • Code: 200 OK

Response body (application/json)
{
    "id": 3621,
    "true_email": "[email protected]",
    "is_initial_password": true,
    "initial_password": "Test1234!43210",
    "first_name": "First 1",
    "last_name": "Last 1",
    "phone_number": "",
    "new_user": true,
    "password": "Test1234!43210"
}

Was this helpful?