Delete Form from Transaction

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
DELETE /v2/transactions/{transactionId}/forms/{id}

Removes a form from a transaction.

Path parameters

  • transactionId string(uuid) Required

    Transaction identifier

  • id string(uuid) Required

    Transaction form instance identifier

Responses

  • 200

    Form removed successfully

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • details array
    • data
DELETE /v2/transactions/{transactionId}/forms/{id}
curl \
 --request DELETE 'https://api.pre.transactiondesk.com/v2/transactions/{transactionId}/forms/{id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (401)
{
  "code": 401,
  "message": "Unauthorized. The user is not authenticated.",
  "details": []
}