Finalize 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/wolfconnect-api/mcp

Standard setup for AI tools providing an mcp.json file

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

Close
PUT /wolfconnect/transactions/v1/{transactionId}/finalize

The status of a transaction cannot be updated through the normal update process as you must call this resource to change the status. This resource will finalize all of the associated transaction tiers with the specified status code as well.

The list of valid status codes is defined in the Transaction.StatusCode property in the schema definitions.

Path parameters

  • transactionId string Required

    The Lone Wolf Id of the transaction to update.

application/json

Body Required

A string holding the status code for the finalized transaction.

string string

The status code for the finalized transaction.

Responses

  • 200

    The transaction was finalized. No response content.

  • 400 application/json

    Error Code 1006: Validation failed. See the Details property of the response for information on why the validation failed. Error Code 1008: Invalid operation. A common reason for this error is if the transaction has been synched with brokerWOLF.

    Hide response attributes Show response attributes object
    • Code integer

      The Lone Wolf Error Code. See the Error Codes section of the introduction.

    • Message string

      The message that corresponds to the Code value.

    • Details string

      The exact problem that occurred to give this error response.

  • 404 application/json

    The transaction could not be found. The primary office for the transaction must be an office with the Client Code used in the API authentication.

    Hide response attributes Show response attributes object
    • Code integer

      The Lone Wolf Error Code. See the Error Codes section of the introduction.

    • Message string

      The message that corresponds to the Code value.

    • Details string

      The exact problem that occurred to give this error response.

PUT /wolfconnect/transactions/v1/{transactionId}/finalize
curl \
 --request PUT 'https://api-sb.globalwolfweb.com/wolfconnect/transactions/v1/{transactionId}/finalize' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '"string"'
Request examples
string
Response examples (400)
{
  "Code": 42,
  "Message": "string",
  "Details": "string"
}
Response examples (404)
{
  "Code": 42,
  "Message": "string",
  "Details": "string"
}