Invite Users
This endpoint allows you to invite existing users to a site. Users can be invited temporary or permanently.
Swagger
Params
name | Parameter type | Data Type | Example | Description |
---|---|---|---|---|
body | string | testuser@intapp.com | Email of user | |
duration | body | int | 10 | If temporary user, set duration in # of days |
groups | body | int[ ] | 12, 22, 192 | Group assignment |
autoCreateOrLinkContact | body | integer | true | If set to true, links invited user to contact |
mappedContactID | body | integer | 0 | Creates 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
}