# VeloPayments::TokensApi All URIs are relative to *https://api.sandbox.velopayments.com* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**resend_token**](TokensApi.md#resend_token) | **POST** /v2/users/{userId}/tokens | Resend a token | ## resend_token > resend_token(user_id, resend_token_request) Resend a token
Resend the specified token
The token to resend must already exist for the user
It will be revoked and a new one issued
### Examples ```ruby require 'time' require 'velopayments' # setup authorization VeloPayments.configure do |config| # Configure OAuth2 access token for authorization: OAuth2 config.access_token = 'YOUR ACCESS TOKEN' end api_instance = VeloPayments::TokensApi.new user_id = '38400000-8cf0-11bd-b23e-10b96e4ef00d' # String | The UUID of the User. resend_token_request = VeloPayments::ResendTokenRequest.new({token_type: 'INVITE_MFA_USER'}) # ResendTokenRequest | The type of token to resend begin # Resend a token api_instance.resend_token(user_id, resend_token_request) rescue VeloPayments::ApiError => e puts "Error when calling TokensApi->resend_token: #{e}" end ``` #### Using the resend_token_with_http_info variant This returns an Array which contains the response data (`nil` in this case), status code and headers. >