Resend invitation
post/v1/senderIdentities/resendInvitationThis 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/[email protected]' \ -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("[email protected]");
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="[email protected]")
<?php require_once "vendor/autoload.php";
use BoldSign\Configuration;
use BoldSign\Api\SenderIdentitiesApi;
$config = new Configuration();
$config->setApiKey('YOUR_API_KEY');
$sender_identities_api = new SenderIdentitiesApi($config);
$sender_identities_api->resendInvitationSenderIdentities($email='[email protected]');
ApiClient client = Configuration.getDefaultApiClient();
client.setApiKey("YOUR_API_KEY");
SenderIdentitiesApi senderIdentitiesApi = new SenderIdentitiesApi(client);
senderIdentitiesApi.resendInvitationSenderIdentities("[email protected]");
import { SenderIdentitiesApi } from "boldsign";
const senderIdentitiesApi = new SenderIdentitiesApi();
senderIdentitiesApi.setApiKey("YOUR_API_KEY");
senderIdentitiesApi.resendInvitationSenderIdentities("[email protected]");
Query parameters
| emailStringRequired | Email address of the sender identity. |
Example response
204 No content