Returns the list of documents and forms for a given transaction, in the same order as the zipForm® Plus UI. Use excludeforms=true to return only non-form documents.
GET
/transactions/{transactionId}/documents
curl \
--request GET 'https://ws.zipformplus.com/api/transactions/{transactionId}/documents' \
--header "X-Auth-ContextId: $API_KEY"
Response examples (200)
{
"value": [
{
"id": "string",
"name": "string",
"description": "string",
"contentType": "string",
"version": "string",
"signed": 42,
"size": 42
}
]
}