Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Resends a signature request email to all outstanding signers.
33243242
The ID of the signature request
Returns an empty response when the API call was successful. The email notifications will be sent asynchronously.
Returns an error when the signature request cannot be found or the user does not have access to the signature request.
An unexpected client error.
curl -i -X POST "https://api.box.com/2.0/sign_requests/<SIGN_REQUEST_ID>/resend" \
-H "authorization: Bearer <ACCESS_TOKEN>"
BoxSignRequest signRequest = new BoxSignRequest(api, id);
BoxSignRequest.Info signRequestInfo = signRequest.getInfo();
signRequestInfo.resend();
sign_request = client.sign_request(sign_request_id='12345')
sign_request.resend()
await client.SignRequestsManager.ResendSignRequestAsync("12345");
const id = 12345;
await client.signRequests.resendById({ sign_request_id: id });
console.log(`Sign request id ${sr.id} resent`);
client.signRequests.resendById(id: "1234") { result: Result<Void, BoxSDKError>} in
guard case .success = result else {
print("Error resending sign request")
return
}
print("Sign request successfully resent")
}