Bigredcloud
Big Red Cloud is cloud accounting software for small businesses, accountants, and bookkeepers.
- Base URL:
https://app.bigredcloud.com/api - Auth:
bearer(pass your key via theapiKeyinput)
Operations
accounts_get— GET /v1/accounts — Returns a list of company's Accounts. Supports OData querying protocol. Filtering is forbidden. Ordering is allowed by "id" and "code" fields.analysiscategories_get— GET /v1/analysisCategories — Returns a list of company's Analysis Categories. Supports OData querying protocol. Filtering is allowed by "categoryTypeId" field. Ordering is allowed by "id" and "orderIndex" fields.bankaccounts_get— GET /v1/bankAccounts — Returns a list of company's Bank Account. Supports OData querying protocol. Filtering is forbidden. Ordering is allowed by "id" and "acCode" fields.get_v1_bankaccounts_id— GET /v1/bankAccounts/{id} — Returns information about a single Bank Account.booktrantypes_get— GET /v1/bookTranTypes — Returns a list of global Book Transactions' Types. Supports OData querying protocol. Filtering is forbidden. Ordering is allowed by "id" field.cashpayments_get— GET /v1/cashPayments — Returns a list of company's Cash Payments. Supports OData querying protocol. Filtering is allowed by "entryDate" field. Ordering is allowed by "id" field.
Inputs
apiKey— your bigredcloud 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: accounts_get
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: accounts_get, analysiscategories_get, bankaccounts_get, get_v1_bankaccounts_id, booktrantypes_get, cashpayments_get |
id |
string | no | — | Path parameter id (required by some operations). |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |