Increase
Increase is a banking and payments API platform for creating bank accounts, moving money, and building financial products.
- Base URL:
https://api.increase.com - Auth:
bearer(pass your key via theapiKeyinput)
Operations
list_account_numbers— GET /account_numbers — List Account Numbersretrieve_an_account_number— GET /account_numbers/{account_number_id} — Retrieve an Account Numberlist_account_statements— GET /account_statements — List Account Statementsretrieve_an_account_statement— GET /account_statements/{account_statement_id} — Retrieve an Account Statementlist_account_transfers— GET /account_transfers — List Account Transfersretrieve_an_account_transfer— GET /account_transfers/{account_transfer_id} — Retrieve an Account Transfer
Inputs
apiKey— your increase API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: list_account_numbers
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: list_account_numbers, retrieve_an_account_number, list_account_statements, retrieve_an_account_statement, list_account_transfers, retrieve_an_account_transfer |
account_number_id |
string | no | — | Path parameter account_number_id (required by some operations). |
account_statement_id |
string | no | — | Path parameter account_statement_id (required by some operations). |
account_transfer_id |
string | no | — | Path parameter account_transfer_id (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |