Returns the list of forms available in a specific library. Since this method is about forms, contentType always has a value of form in the response.
GET
/libraries/{libraryId}/{libraryName}/{libraryVersion}
curl \
--request GET 'https://api.pre.zipformplus.com/api/libraries/{libraryId}/{libraryName}/{libraryVersion}' \
--header "X-Auth-ContextId: $API_KEY"
Response examples (200)
{
"value": [
{
"id": "string",
"name": "string",
"description": "string",
"contentType": "string",
"version": "string",
"signed": 42,
"size": 42
}
]
}