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

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