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

# Accept Invitation

Accept a pending invitation to join an organization.

### Request

<ParamField path="invite_id" type="string" required>
  The unique identifier of the invitation to accept.
</ParamField>

### Response

<ResponseField name="success" type="boolean">
  Indicates whether the operation was successful.
</ResponseField>

<ResponseField name="message" type="string">
  A descriptive message about the operation result.
</ResponseField>

<ResponseField name="organization_id" type="string">
  The unique identifier of the organization joined.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "message": "Invitation accepted",
    "organization_id": "org_abc123"
  }
  ```
</ResponseExample>
