Skip to main content

Get Remote Signing Status

Description: To get the status of a remote signing request a HTTP GET request is made to the URL with the form ID.

Method: GET

URI: /forms/form_id/remote_sign

URI Parameters:

  • form_id: The ID of the form.

Headers: Authorization: Third party based authorization header

Returns

FieldTypeDescription
Remote Sign StatusRemote Sign StatusA remote sign status object.

Example

Request
curl https://app-api.reiformslive.com.au/forms/1/remote_sign \
--request GET \
--header "content-type: application/json" \
--header "Authorization: Basic YTlkOWIwYItNGY4Yi1hYTQxLTI5NzZmMTcyZmEyMQ=="
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
}
]
}