Skip to main content

All

The 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 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 or in the response when .
curl -i -X GET "https://api.box.com/2.0/sign_requests/<SIGN_REQUEST_ID>" \
     -H "authorization: Bearer <ACCESS_TOKEN>"