List all documents

GET/signing/{connection_id}/document

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
statusstring
The status to filter by
template_idstring
The signing template ID to filter by
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

Returns

idstring
Unique identifier for this signing document
created_atdate
The date that this signing document was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this signing document was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
Document/envelope title
descriptionstring
Message to signers
status enum
Valid values:
"DRAFT"
"SENT"
"DELIVERED"
"IN_PROGRESS"
"COMPLETED"
Current status of the signing document
sent_atdate
When sent for signature (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
completed_atdate
When all signatures were collected (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
expires_atdate
Signing deadline (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
template_idstring
If created from a template; points to SigningTemplate
download_urlstring
URL to download the signed document
creator_idstring
User who created the signing document
const options = {
  method: 'GET',
  url: 'https://api.unified.to/signing/5de520f96e439b002043d8dc/document',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-05-29T17:50:55.576Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    status: '',
    template_id: '',
    fields: '',
    raw: '',
  }
};

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