action up_get_transactions_id { label: "Retrieve transaction" description: "Retrieve a specific transaction by providing its unique identifier.\n" provider: up method: GET path: "/transactions/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Successful response to get a single transaction.\n" required: ["data"] properties: { data: { description: "The transaction returned in this response.\n" type: "object" } } } }