Invite Users
POST {{host}}/api/rest/v1/management/user/inviteThis endpoint allows you to invite existing users to a DealCloud site. Users can be invited temporarily or permanently.
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 | 
Examples
POST {{host}}/api/rest/v1/management/user/activity
Authorization: Bearer {{token}}
Content-Type: application/json
 
{
  "email": "testuser@intapp.com",
  "duration": 5,
  "groups": [
    15
  ],
  "autoCreateOrLinkContact": true,
  "mappedContactId": 0
}