# Invites

This group of endpoints allows you to create, list, and cancel pending user invitations. An invite exists until the recipient accepts it, at which point they appear as a user in the Users endpoints.

## List invites

 - [GET /v1/businesses/{client_id}/invites](https://developer.letsweel.com/openapi/invites/listinvites.md): Returns a paginated list of invites for the given business. Includes both pending and accepted invites; excludes cancelled invites.

## Create invite

 - [POST /v1/businesses/{client_id}/invites](https://developer.letsweel.com/openapi/invites/createinvite.md): Creates and sends an invite to the given email address. Returns the created invite, including its ID for use in the cancel endpoint.

## Cancel invite

 - [DELETE /v1/businesses/{client_id}/invites/{invite_id}](https://developer.letsweel.com/openapi/invites/cancelinvite.md): Cancels a pending invite. Returns 400 if the invite has already been accepted.

