Create a user

Create a user with Rightsline access.

Create a user

POST https://ris.rightsline.com/v4/user

Headers

NameTypeDescription

x-api-key*

string

Your company's API key.

Authentication*

string

Authentication token.

Request Body

NameTypeDescription

email*

string

User login email address.

characteristics*

object

The characteristics of the user entity.

template*

object

The template for the user entity.

template.templateId*

int

The template ID of the user entity.

appIds*

int[]

An array of integers for which applications the user has access to. See Get Applications.

workflowRoleIds*

int[]

An array of integers for the workflow roles assigned to the user. See Get Roles.

identityRoleIds*

Guid[]

An array of Guids for the identity roles assigned to the user. See Get Roles.

disableMessages

boolean

If true, activity from this user will not generate audit messages. If false or not included in request, audit messages will send as normal.

549846
POST /v4/user
{
    "email": "someone@gmail.com",
    "characteristics":{
        "last_name": "Last",
        "email":"someone@gmail.com",
        "first_name": "First"
    },
    "template":{
        "templateId": 3
    },
    "appIds":[24,80],
    "workflowRoleIds":[2],
    "identityRoleIds":["469a0ede-dca5-4b68-a5ef-43a8dfe9f5cf"],
    "disableMessages": false
}

Last updated