Returns all form-library folders available to the authenticated user.
GET
/v2/formlibraries
curl \
--request GET 'https://api.pre.transactiondesk.com/v2/formlibraries' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"folderId": 123,
"name": "State Forms",
"description": "State form library"
}
]
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}