{ "opencollection": "1.0.0", "info": { "name": "TrueLayer Mandates Payments API", "version": "3.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Payments", "type": "folder" }, "items": [ { "info": { "name": "Create Payment", "type": "http" }, "http": { "method": "POST", "url": "https://api.truelayer.com/v3/payments", "headers": [ { "name": "Tl-Signature", "value": "" }, { "name": "Idempotency-Key", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Initiate a new payment via open banking. Supports closed-loop pay-ins to merchant accounts, single payments to external accounts, and mandate-based VRP payments. All POST requests must include a Tl-Signature header and Idempotency-Key." }, { "info": { "name": "Get Payment", "type": "http" }, "http": { "method": "GET", "url": "https://api.truelayer.com/v3/payments/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Payment UUID" } ] }, "docs": "Retrieve the current status and details of a payment." }, { "info": { "name": "Start Authorization Flow", "type": "http" }, "http": { "method": "POST", "url": "https://api.truelayer.com/v3/payments/:id/authorization-flow", "headers": [ { "name": "Tl-Signature", "value": "" }, { "name": "Idempotency-Key", "value": "" } ], "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Start or continue the payment authorization flow. Used when implementing a custom authorization journey." } ] } ], "bundled": true }