Rerequest
post/v1/senderIdentities/rerequestThis API re-requests approval from the user who has been added as the sender identity and declined the request.
Code snippet
curl -X 'POST' \ 'https://api.boldsign.com/v1/senderIdentities/rerequest?email=luthercooper%40cubeflakes.com' \ -H 'accept: */*' \ -H 'X-API-KEY: {your API key}'
var apiClient = new ApiClient("YOUR_API_KEY"); var senderIdentityClient = new SenderIdentityClient(apiClient); senderIdentityClient.RerequestSenderIdentity("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.re_request_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->reRequestSenderIdentities($email='luthercooper@cubeflakes.com');
ApiClient client = Configuration.getDefaultApiClient(); client.setApiKey("YOUR_API_KEY"); SenderIdentitiesApi senderIdentitiesApi = new SenderIdentitiesApi(client); senderIdentitiesApi.reRequestSenderIdentities("luthercooper@cubeflakes.com");
import { SenderIdentitiesApi } from "boldsign"; const senderIdentitiesApi = new SenderIdentitiesApi(); senderIdentitiesApi.setApiKey("YOUR_API_KEY"); senderIdentitiesApi.reRequestSenderIdentities("luthercooper@cubeflakes.com");
Query parameters
emailStringRequired | Email address of the sender identity. |
Example response
204 No content