Invite Users

This endpoint allows you to invite existing users to a site. Users can be invited temporary or permanently.

Swagger

Swagger

Params

nameParameter typeData TypeExampleDescription
emailbodystringtestuser@intapp.comEmail of user
durationbodyint10If temporary user, set duration in # of days
groupsbodyint[ ]12, 22, 192Group assignment
autoCreateOrLinkContactbodyintegertrueIf set to true, links invited user to contact
mappedContactIDbodyinteger0Creates new contact if ommitted and autoCreateorLinkedContact is set to true

Sample Query

{
  "email": "testuser@intapp.com",
  "duration": 5,
  "groups": [
    15
  ],
  "autoCreateOrLinkContact": true,
  "mappedContactId": 0
}

Sample Requests

POST {{host}}/api/rest/v1/management/user/activity
Authorization: {{auth}}
Content-Type: application/json
 
{
  "email": "testuser@intapp.com",
  "duration": 5,
  "groups": [
    15
  ],
  "autoCreateOrLinkContact": true,
  "mappedContactId": 0
}