List Box Sign Requests
List Box Sign Requests
All
The get sign requests endpoint can be used to view a list of all Box Sign requests created by the user associated with the passed Access Token.
curl -i -X GET "https://api.box.com/2.0/sign_requests" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.signRequests.getSignRequests();client.sign_requests.get_sign_requests()await client.SignRequests.GetSignRequestsAsync();try await client.signRequests.getSignRequests()client.getSignRequests().getSignRequests()await client.SignRequests.GetSignRequestsAsync();await client.signRequests.getSignRequests();By ID
The get sign requests by ID endpoint can be used to view information about a specific Box Sign request. This endpoint requires the sign request's ID, which can be obtained by using the get all Box Sign requests endpoint or in the response when creating a Box Sign request.
curl -i -X GET "https://api.box.com/2.0/sign_requests/<SIGN_REQUEST_ID>" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.signRequests.getSignRequestById(createdSignRequest.id!);client.sign_requests.get_sign_request_by_id(created_sign_request.id)await client.SignRequests.GetSignRequestByIdAsync(signRequestId: NullableUtils.Unwrap(createdSignRequest.Id));try await client.signRequests.getSignRequestById(signRequestId: createdSignRequest.id!)client.getSignRequests().getSignRequestById(createdSignRequest.getId())await client.SignRequests.GetSignRequestByIdAsync(signRequestId: NullableUtils.Unwrap(createdSignRequest.Id));await client.signRequests.getSignRequestById(createdSignRequest.id!);