UserInvitationCreateRequest
Request to invite a user to a network. The network comes from the path. role is the network membership role to grant on acceptance (admin or viewer). expires_in_days is optional (defaults to 7).
emailstringnullable
Email address to send the invitation to
Example:
member@example.comfirst_namestringnullable
Recipient's first name
Example:
Jordanlast_namestringnullable
Recipient's last name
Example:
Leerolestringnullable
Network membership role to grant on acceptance
Possible values: [admin, viewer]
Example:
viewerexpires_in_daysint32nullable
Number of days until the invitation expires; defaults to 7 if omitted
Example:
7UserInvitationCreateRequest
{
"email": "member@example.com",
"first_name": "Jordan",
"last_name": "Lee",
"role": "viewer",
"expires_in_days": 7
}