Skip to main content

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.com
first_namestringnullable

Recipient's first name

Example: Jordan
last_namestringnullable

Recipient's last name

Example: Lee
rolestringnullable

Network membership role to grant on acceptance

Possible values: [admin, viewer]

Example: viewer
expires_in_daysint32nullable

Number of days until the invitation expires; defaults to 7 if omitted

Example: 7
UserInvitationCreateRequest
{
"email": "member@example.com",
"first_name": "Jordan",
"last_name": "Lee",
"role": "viewer",
"expires_in_days": 7
}