Get Specific Transaction SSO Link

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/transactions/{id}/view-url

Returns a one-time-use SSO link that lands the user directly into a specific transaction.

Path parameters

  • id string(uuid) Required

    TransactionGUID

Responses

  • 200 application/json

    SSO link returned successfully

    Hide response attribute Show response attribute object
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code integer
    • message string
    • details array
    • data
GET /v2/transactions/{id}/view-url
curl \
 --request GET 'https://api.pre.transactiondesk.com/v2/transactions/{id}/view-url' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "link": "https://td2.transactiondesk.com/external/entry.ashx?i=28403062-47a4-4a7a-ae3d-b3f64decd32e"
}
Response examples (401)
{
  "code": 401,
  "message": "Unauthorized. The user is not authenticated.",
  "details": []
}