Invite
An invite for a user to an enterprise.Attributes and example
Attributes and example
| Property | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier for this invite. |
type | enum<string> | Yes | The value will always be invite. Available options: invite. |
invited_to | object | No | A representation of a Box enterprise. |
actionable_by | User (Mini) | No | |
invited_by | User (Mini) | No | |
status | string | No | The status of the invite. |
created_at | string | No | When the invite was created. |
modified_at | string | No | When the invite was modified. |
Example
{
"id": "11446498",
"type": "invite",
"invited_to": {
"id": "11446498",
"type": "enterprise",
"name": "Acme Inc."
},
"actionable_by": {
"id": "11446498",
"type": "user",
"name": "Aaron Levie",
"login": "ceo@example.com"
},
"invited_by": {
"id": "11446498",
"type": "user",
"name": "Aaron Levie",
"login": "ceo@example.com"
},
"status": "pending",
"created_at": "2012-12-12T10:53:43-08:00",
"modified_at": "2012-12-12T10:53:43-08:00"
}
