• FAQ
  • API
  • Members
  • Adding a new user to the account through API: add_user

Adding a new user to the account through API: add_user


Sample add_user request

?action=add_user&email=USER_EMAIL
Invites new account user
*into your team if group parameter is not specified

Required parameters:
  • email — user email

Optional parameters:
  • first_name — user first name
  • last_name — user last name
  • title — user position
  • group — team name
  • department — department name
  • role — user role, possible values: user, guest and reader

Sample JSON response
If the request succeeds, the response will contain ok status and the following data:

{
    "status": "ok",
    "data": {
        "id": "USER_ID",
        "first_name": "USER_FIRST_NAME",
        "last_name": "USER_LAST_NAME",
        "name": "USER_NAME",
        "title": "USER_POSITION",
"rate": USER_RATE,
        "avatar": "URL",
        "group": "GROUP_NAME",
        "department": "USER_DEPARTMENT",
        "role": "USER_ROLE",
        "email": "USER_EMAIL"
    }
}