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)
    
    resend_sender_identities_response = sender_identities_api.resend_invitation_sender_identities(
        email="luthercooper@cubeflakes.com",
    )
const axios = require('axios');
const response = await axios.post(
'https://api.boldsign.com/v1/senderIdentities/resendInvitation?luthercooper%40cubeflakes.com',
'',
{
headers: {
'accept': '*/*',
'X-API-KEY': '{your API key}',
'Content-Type': 'application/x-www-form-urlencoded'
}
}
);

Query parameters

emailStringRequiredEmail address of the sender identity.

Example response

204 No content