Resends a sign request email to all outstanding signers.
"33243242"
The ID of the sign request
Returns an empty response when the API call was successful. The email notifications will be sent asynchronously.
Returns an error when the sign request cannot be found or the user does not have access to the sign 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>"
await client.SignRequestsManager.ResendSignRequestAsync("12345");
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()
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")
}