Skip to main content

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>"

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>"