Skip to main content
Invites are used to invite the user to an enterprise.

Invite

An invite for a user to an enterprise.
PropertyTypeRequiredDescription
idstringYesThe unique identifier for this invite.
typeenum<string>YesThe value will always be invite. Available options: invite.
invited_toobjectNoA representation of a Box enterprise.
actionable_byUser (Mini)No
invited_byUser (Mini)No
statusstringNoThe status of the invite.
created_atstringNoWhen the invite was created.
modified_atstringNoWhen 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"
}
Last modified on July 9, 2026