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

# Resend Invite Email

> Resend an invite email to a specified person

## Update a person

<Note>
  **PATCH** `/v2/people/{personId}/invite`
</Note>

### Request

Use this request to resend an invitation email to a specified person. An invite can be resent multiple times but can only be accepted once. The email will be Equals branded unless you are a whitelabel customer. For customisation options, please contact your account manager.

<CodeGroup>
  ```bash Sample request theme={null}
  curl -i -X POST \
    'https://api.equalsmoney.com/v2/people/{personId}/invite?accountId=F50091' \
    -H 'Authorization: YOUR_API_KEY_HERE'
  ```

  ```bash Request structure theme={null}
  curl -i -X POST \
    'https://api.equalsmoney.com/v2/people/{personId}/invite?accountId=F50091' \
    -H 'Authorization: YOUR_API_KEY_HERE'
  ```
</CodeGroup>

#### Path parameters

<ParamField body="personId" type="string" required>
  The ID of the person that you want to update.

  Allowable values: An existing `personId` (≤ 36 characters)
</ParamField>

#### Query parameters

<ParamField body="accountId" type="string" required>
  The ID of the account to work with.

  Allowable values: An existing `accountId`
</ParamField>

### Response

If your request is successful, you'll receive a `200` response.

<CodeGroup>
  ```json Sample response theme={null}
  {
    "success": true
  }
  ```

  ```json Response structure theme={null}
  {
    "success": boolean
  }
  ```
</CodeGroup>

For more detailed information about this request and its response, [see the API reference](/api-reference/people/resend-invite-email).
