POST/spaces/api/v1/users/bulk/invite.json
Performs a soft user registration and emails an invite to each user email listed.
Body Params
- Name
invites
- Type
- array
- Description
- InviteUser is the request object submitted to create a new invite for a user.
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 OK
- Code
- 400
- Type
- object
- Schema
- Description
- 400 Bad Request
- Code
- 500
- Type
- object
- Schema
- Description
- 500 Internal Server Error
200 OK
InviteResponse
{
"invites": {
"failed": {
"additionalProp": "string"
},
"users": [
{
"email": "string",
"id": 0
}
]
}
}