Skip to main content

Get Form Signers

Description: To get a list of signers for a form, a HTTP GET request is made to the URL.

Method: GET

URI: /forms/form_id/remote_sign/signers

URI Parameters

  • form_id: The ID of the form.

Headers: Authorization: Third party based authorization header

Returns

FieldTypeDescription
Signers object with array of SignersSignerA signer object.

Example

Request
curl https://app-api.reiformslive.com.au/forms/1/remote_sign/signers \
--request GET \
--header "Authorization: Basic YTlkOWIwYItNGY4Yi1hYTQxLTI5NzZmMTcyZmEyMQ=="
Response
{
"signers": [
{
"signer": "Agent",
"name": null,
"email": null
},
{
"signer": "Vendor (1)",
"name": null,
"email": null
},
{
"signer": "Vendor (2)",
"name": null,
"email": null
}
]
}