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/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";
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='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";
const senderIdentitiesApi = new SenderIdentitiesApi();
senderIdentitiesApi.setApiKey("YOUR_API_KEY");
senderIdentitiesApi.resendInvitationSenderIdentities("luthercooper@cubeflakes.com");
Query parameters
| emailStringRequired | Email address of the sender identity. |
Example response
204 No content