Create a 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
POST /v2/transactions

Creates a new transaction file in the authenticated user's account.

application/json

Body Required

  • name string Required

    Name of the transaction file

  • typeId string(uuid)

    TransactionTypeGUID. See Glossary for values.

  • statusId string(uuid)

    TransactionStatusGUID. See Glossary for values.

Responses

  • 200 application/json

    Transaction created successfully

    Hide response attribute Show response attribute object
    • id string(uuid)
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • details array
    • data
POST /v2/transactions
curl \
 --request POST 'https://api.pre.transactiondesk.com/v2/transactions' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"Name of Property","typeId":"805355ec-7f7d-413e-986a-c767ea0632da","statusId":"805355ec-7f7d-413e-986a-c767ea0632da"}'
Request examples
{
  "name": "Name of Property",
  "typeId": "805355ec-7f7d-413e-986a-c767ea0632da",
  "statusId": "805355ec-7f7d-413e-986a-c767ea0632da"
}
Response examples (200)
{
  "id": "805355ec-7f7d-413e-986a-c767ea0632da"
}
Response examples (401)
{
  "code": 401,
  "message": "Unauthorized. The user is not authenticated.",
  "details": []
}