Create License User

Creates a license user if requesting manager has access permissions to it.

Endpoint: /api/v1/license-users/ Method: POST

Parameters

  • email - String

  • first_name - String

  • last_name - String

  • phone_number - String

  • password - String

  • metadata - JSON

Data example

Request body (application/json)
{
    "email": "[email protected]",
    "metadata": {
        "this": "that"
    }
}

Success Response

Code: 200 OK

Was this helpful?