> ## 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.

# Cancel Invitation

Cancel a pending invitation before it has been accepted.

### Request

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

<ParamField header="X-Organization-Id" type="string" required>
  The unique identifier of the organization.
</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>

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