Create group member
If the email is a registered user then access to group will be immediate, otherise an invitation will be created and emailed.
- application/json
Request Body required
- group string required
Possible values: Value must match regular expression
^/api/v1/group/[-\w]{1,50}/$
- email email required
Possible values:
<= 75 characters
- do_email boolean
Default value:
false
use legalesign to send email notification to new user
- permission integer
Possible values: [
1
,2
,3
,4
,5
,6
]Permissions options:
- 1 - administrator
- 2 - team docs visible, create & send
- 3 - team docs visible, send only
- 4 - no team sent docs visible, send only
- 5 - no team docs visible, create & send
- 6 - team docs visible, read only
Responses
- 201
- 400
operation successful
operation not successful, e.g. person is already a member or not yet joined
- application/json
- Example
{
"response": {
"value": {
"member": {
"exists": "User is already a member of the group"
}
}
}
}
Loading...