Skip to main content

Create Remote Signing Request

Description: To create a remote signing request, a HTTP POST request is made to the URL with a completed Signers object.

Method: POST

URI: /forms/form_id/remote_sign

URI Parameters

  • form_id: The ID of the form.

Required Parameters

  • signers: An array of Signers

Headers: Authorization: Third party based authorization header

Returns

FieldTypeDescription
Remote Sign StatusRemote Sign StatusA remote sign status object.

Example

Request
curl http://app-api.reiformslive.com.au/forms/1/remote_sign \
--request POST \
--header "content-type: application/json" \
--header "Authorization: Basic YTlkOWIwYItNGY4Yi1hYTQxLTI5NzZmMTcyZmEyMQ==" \
--data '{"signers": [
{
"signer": "Agent",
"name": "John Doe",
"email": "john@example.org"
},
{
"signer": "Vendor (1)",
"name": "Jane Smith",
"email": "jane@example.org"
}
]}'
Response
{
"status": "sent",
"created": "2018-10-12T05:51:22.1600000Z",
"updated": "2018-10-12T05:51:22.1600000Z",
"sent": "2018-10-12T05:51:23.3330000Z",
"recipients": [
{
"name": "John Doe",
"email": "john@example.org",
"status": "sent",
"signed": null
},
{
"name": "Jane Smith",
"email": "jane@example.org",
"status": "sent",
"signed": null
}
]
}