{ "opencollection": "1.0.0", "info": { "name": "Increase Account Numbers Pending Transactions API", "version": "0.0.1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Pending Transactions", "type": "folder" }, "items": [ { "info": { "name": "List Pending Transactions", "type": "http" }, "http": { "method": "GET", "url": "https://api.increase.com/pending_transactions", "params": [ { "name": "cursor", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "account_id", "value": "", "type": "query" }, { "name": "route_id", "value": "", "type": "query" }, { "name": "category.in", "value": "", "type": "query" }, { "name": "status.in", "value": "", "type": "query" }, { "name": "created_at.after", "value": "", "type": "query" }, { "name": "created_at.before", "value": "", "type": "query" }, { "name": "created_at.on_or_after", "value": "", "type": "query" }, { "name": "created_at.on_or_before", "value": "", "type": "query" } ] }, "docs": "List Pending Transactions" }, { "info": { "name": "Create a Pending Transaction", "type": "http" }, "http": { "method": "POST", "url": "https://api.increase.com/pending_transactions", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a pending transaction on an account. This can be useful to hold funds for an external payment or known future transaction outside of Increase (only negative amounts are supported). The resulting Pending Transaction will have a `category` of `user_initiated_hold` and can be released via the API to unlock the held funds." }, { "info": { "name": "Retrieve a Pending Transaction", "type": "http" }, "http": { "method": "GET", "url": "https://api.increase.com/pending_transactions/:pending_transaction_id", "params": [ { "name": "pending_transaction_id", "value": "pending_transaction_k1sfetcau2qbvjbzgju4", "type": "path" } ] }, "docs": "Retrieve a Pending Transaction" }, { "info": { "name": "Release a user-initiated Pending Transaction", "type": "http" }, "http": { "method": "POST", "url": "https://api.increase.com/pending_transactions/:pending_transaction_id/release", "params": [ { "name": "pending_transaction_id", "value": "pending_transaction_k1sfetcau2qbvjbzgju4", "type": "path" } ] }, "docs": "Release a Pending Transaction you had previously created. The Pending Transaction must have a `category` of `user_initiated_hold` and a `status` of `pending`. This will unlock the held funds and mark the Pending Transaction as complete." } ] } ], "bundled": true }