clerk-rs 0.4.2

The official community Rust SDK for the Clerk API
Documentation
# \InvitationsApi

All URIs are relative to *https://api.clerk.dev/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**create_invitation**]InvitationsApi.md#create_invitation | **POST** /invitations | Create an invitation
[**list_invitations**]InvitationsApi.md#list_invitations | **GET** /invitations | List all invitations
[**revoke_invitation**]InvitationsApi.md#revoke_invitation | **POST** /invitations/{invitation_id}/revoke | Revokes an invitation



## create_invitation

> crate::models::Invitation create_invitation(create_invitation_request)
Create an invitation

Creates a new invitation for the given email address and sends the invitation email. Keep in mind that you cannot create an invitation if there is already one for the given email address. Also, trying to create an invitation for an email address that already exists in your application will result to an error.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**create_invitation_request** | Option<[**CreateInvitationRequest**]CreateInvitationRequest.md> | Required parameters |  |

### Return type

[**crate::models::Invitation**](Invitation.md)

### Authorization

[bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## list_invitations

> Vec<crate::models::Invitation> list_invitations(status)
List all invitations

Returns all non-revoked invitations for your application, sorted by creation date

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**status** | Option<**String**> | Filter invitations based on their status |  |

### Return type

[**Vec<crate::models::Invitation>**](Invitation.md)

### Authorization

[bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## revoke_invitation

> crate::models::Invitation revoke_invitation(invitation_id)
Revokes an invitation

Revokes the given invitation. Revoking an invitation will prevent the user from using the invitation link that was sent to them. However, it doesn't prevent the user from signing up if they follow the sign up flow. Only active (i.e. non-revoked) invitations can be revoked.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**invitation_id** | **String** | The ID of the invitation to be revoked | [required] |

### Return type

[**crate::models::Invitation**](Invitation.md)

### Authorization

[bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)