CreateOrganizationInviteRequest
Request body for creating an organization invite.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
email |
string | Yes | Email address of the invitee. |
role |
string,null | No | Optional role for the invitee (defaults to member). |
View JSON Schema
{
"type": "object",
"description": "Request body for creating an organization invite.",
"required": [
"email"
],
"properties": {
"email": {
"type": "string",
"description": "Email address of the invitee."
},
"role": {
"type": [
"string",
"null"
],
"description": "Optional role for the invitee (defaults to member)."
}
}
}