CreateSignRequest
Create a Sign Request.
Execute
To create a Sign Request you must provide a JSON object as the payload for the API request in the SignRequestPayload parameter. For the payload structure refer to the Box API Reference here.
EXEC CreateSignRequest SignRequestPayload = '{"are_reminders_enabled":true,"are_text_signatures_enabled":true,"days_valid":10,"declined_redirect_url":"https://cdata.com/","email_message":"Testing CreateSignRequest stored procedure",...}'
Alternatively, you can specify an absolute path to a file containing the JSON object.
EXEC CreateSignRequest SignRequestPayloadPath = 'C:/Users/User/payload.json'
Input
Name | Type | Description |
SignRequestPayload | String | A JSON object, representing the API request payload for creating a Sign Request. |
SignRequestPayloadPath | String | An absolute path to a file in your system that should contain a JSON object, representing the API request payload for creating a Sign Request. |
AsUserId | String | The Id of the user you want to impersonate. Only works with Admin, Co-Admin and Service Accounts. |
Result Set Columns
Name | Type | Description |
SignRequestAggregate | String | A JSON aggregate representing the newly created Sign Request. |