> ## 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 リソース

招待は、ユーザーを企業に招待するために使用されます。

## Invite

会社へのユーザーの招待。

<Accordion title="属性と例">
  | プロパティ           | 型                                                  | 必須  | 説明                                       |
  | --------------- | -------------------------------------------------- | --- | ---------------------------------------- |
  | `id`            | `string`                                           | はい  | この招待の一意の識別子。                             |
  | `type`          | `enum<string>`                                     | はい  | 値は常に`invite`になります。 使用可能なオプション: `invite`. |
  | `invited_to`    | `object`                                           | いいえ | Box Enterpriseのレプリゼンテーション。               |
  | `actionable_by` | [ユーザー (Mini)](/ja/reference/users-resources#-mini) | いいえ |                                          |
  | `invited_by`    | [ユーザー (Mini)](/ja/reference/users-resources#-mini) | いいえ |                                          |
  | `status`        | `string`                                           | いいえ | 招待のステータス。                                |
  | `created_at`    | `string`                                           | いいえ | 招待が作成された日時。                              |
  | `modified_at`   | `string`                                           | いいえ | 招待が変更された日時。                              |

  ```json 例 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>
