> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Invites resources

Invites are used to invite the user to an enterprise.

## Invite

An invite for a user to an enterprise.

<Accordion title="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)](/reference/users-resources#user-mini) | No       |                                                                 |
  | `invited_by`    | [User (Mini)](/reference/users-resources#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.                                   |

  ```json Example theme={null}
  {
    "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"
  }
  ```
</Accordion>
