Get Forms Within a Library

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/transactiondesk-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "TransactionDesk API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/transactiondesk-api/mcp"
  }
}

Close
GET /v2/formlibraries/{folderId}/forms/{formLib}

Returns a specific form within a form-library folder.

Path parameters

  • folderId integer Required

    Form-library folder identifier

  • formLib string Required

    Form identifier within the folder. Matching is case-insensitive.

Responses

  • 200 application/json

    Form returned successfully

    Hide response attributes Show response attributes object
    • formLib string

      Form identifier within the folder

    • name string

      Name of the form

    • description string

      Description of the form

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • details array
    • data
  • 404 application/json

    Not found

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • details array
GET /v2/formlibraries/{folderId}/forms/{formLib}
curl \
 --request GET 'https://api.pre.transactiondesk.com/v2/formlibraries/{folderId}/forms/{formLib}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "formLib": "ABC123",
  "name": "Purchase Agreement",
  "description": "Purchase Agreement form"
}
Response examples (401)
{
  "code": 401,
  "message": "Unauthorized. The user is not authenticated.",
  "details": []
}
Response examples (404)
{
  "code": 404,
  "message": "Item not found.",
  "details": []
}