Retrieve a signatory

GET/signing/{connection_id}/signatory/{id}

Parameters

fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
idstring required
ID of the Signatory

Returns

idstring
Unique identifier for this signatory
created_atdate
The date that this signatory was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this signatory was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
document_idstring
Parent signing document; points to SigningDocument
namestring
Full name of the signatory
emailstring
Email address of the signatory
role enum
Valid values:
"SIGNER"
"CC"
"APPROVER"
"IN_PERSON_SIGNER"
"VIEWER"
Role of the signatory
status enum
Valid values:
"PENDING"
"SENT"
"DELIVERED"
"SIGNED"
"DECLINED"
Current status of this signatory
ordernumber
Signing order (1, 2, 3...)
signed_atdate
When this signatory signed (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
decline_reasonstring
Reason for declining (if status is DECLINED)
const options = {
  method: 'GET',
  url: 'https://api.unified.to/signing/5de520f96e439b002043d8dc/signatory/5de520f96e439b002043d8d8',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?