OrganizationInvite
Response type for organization invites (token is not exposed over the API).
Properties
| Property | Type | Required | Description |
|---|---|---|---|
accepted_at |
string,null | No | |
created_at |
string | Yes | |
email |
string | Yes | |
expires_at |
string | Yes | |
id |
string | Yes | |
invited_by |
string | Yes | |
organization_id |
string | Yes | |
revoked_at |
string,null | No | |
role |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Response type for organization invites (token is not exposed over the API).",
"required": [
"id",
"organization_id",
"email",
"role",
"invited_by",
"expires_at",
"created_at"
],
"properties": {
"accepted_at": {
"type": [
"string",
"null"
]
},
"created_at": {
"type": "string"
},
"email": {
"type": "string"
},
"expires_at": {
"type": "string"
},
"id": {
"type": "string",
"format": "uuid"
},
"invited_by": {
"type": "string",
"format": "uuid"
},
"organization_id": {
"type": "string",
"format": "uuid"
},
"revoked_at": {
"type": [
"string",
"null"
]
},
"role": {
"type": "string"
}
}
}