Resend invitation

post/v1/senderIdentities/resendInvitation

This API resends the invitation to the user who has been added as the sender identity but has not approved it yet.

Code snippet

curl -X 'POST' \
  'https://api.boldsign.com/v1/senderIdentities/resendInvitation?email=luthercooper@cubeflakes.com' \
      -H 'accept: */*' \
      -H 'X-API-KEY: {your API key}' \
      -d ''
            var apiClient = new ApiClient("https://api.boldsign.com", "{your API key}");
            var senderIdentityClient = new SenderIdentityClient(apiClient);
            senderIdentityClient.ResendInvitation("luthercooper@cubeflakes.com");
import boldsign

configuration = boldsign.Configuration(api_key="YOUR_API_KEY")

with boldsign.ApiClient(configuration) as api_client:
    
    sender_identities_api = boldsign.SenderIdentitiesApi(api_client)
    sender_identities_api.resend_invitation_sender_identities(email="luthercooper@cubeflakes.com")
<?php require_once "vendor/autoload.php";

$config = new BoldSign\Configuration();
$config->setApiKey('YOUR_API_KEY');

$sender_identities_api = new BoldSign\Api\SenderIdentitiesApi($config);
$sender_identities_api->resendInvitationSenderIdentities($email='luthercooper@cubeflakes.com');
ApiClient client = Configuration.getDefaultApiClient();  
client.setApiKey("YOUR_API_KEY");
            
SenderIdentitiesApi senderIdentitiesApi = new SenderIdentitiesApi(client);
senderIdentitiesApi.resendInvitationSenderIdentities("luthercooper@cubeflakes.com");
import { SenderIdentitiesApi } from "@boldsign/node-sdk";

const senderIdentitiesApi = new SenderIdentitiesApi();
senderIdentitiesApi.setApiKey("YOUR_API_KEY");

senderIdentitiesApi.resendInvitationSenderIdentities("luthercooper@cubeflakes.com");

Query parameters

emailStringRequiredEmail address of the sender identity.

Example response

204 No content