get_document
Retrieve complete document or document group details including field values from SignNow e-signature platform using entity ID.
Instructions
Get full document or document group information with field values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_id | Yes | ID of the document or document group to retrieve | |
entity_type | No | Type of entity: 'document' or 'document_group' (optional). If not provided, will be determined automatically |
Input Schema (JSON Schema)
{
"properties": {
"entity_id": {
"description": "ID of the document or document group to retrieve",
"title": "Entity Id",
"type": "string"
},
"entity_type": {
"anyOf": [
{
"enum": [
"document",
"document_group"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Type of entity: 'document' or 'document_group' (optional). If not provided, will be determined automatically",
"title": "Entity Type"
}
},
"required": [
"entity_id"
],
"type": "object"
}