A beta version of the new Box developer documentation site is launching soon! Updated Developer Guides, modern API Reference, and AI-powered search are on the way to help you build with Box faster. Stay tuned for more updates.
Resends a signature request email to all outstanding signers.
33243242The 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`);