You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: banking/docs/sdks/accountbalances/README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,12 @@ Balances for a bank account including end-of-day batch balance or running balanc
10
10
11
11
## list
12
12
13
-
Gets a list of balances for a bank account including end-of-day batch balance or running balances per transaction.
13
+
The *List account balances* endpoint returns a list of [account balances](https://docs.codat.io/banking-api#/schemas/AccountBalance) for a given company's connection.
14
+
15
+
[Account balances](https://docs.codat.io/banking-api#/schemas/AccountBalance) are balances for a bank account, including end-of-day batch balance or running balances per transaction.
16
+
17
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
Copy file name to clipboardExpand all lines: banking/docs/sdks/accounts/README.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,14 @@ Where payments are made or received, and bank transactions are recorded.
11
11
12
12
## get
13
13
14
-
Gets a specified bank account for a given company
14
+
The *Get account* endpoint returns a single account for a given accountId.
15
+
16
+
[Accounts](https://docs.codat.io/banking-api#/schemas/Account) are financial accounts maintained by a bank or other financial institution.
17
+
18
+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/banking?view=tab-by-data-type&dataType=banking-accounts) for integrations that support getting a specific account.
19
+
20
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
21
+
15
22
16
23
### Example Usage
17
24
@@ -52,7 +59,12 @@ if res.account is not None:
52
59
53
60
## list
54
61
55
-
Gets a list of all bank accounts of the SMB, with rich data like balances, account numbers and institutions holdingthe accounts.
62
+
The *List accounts* endpoint returns a list of [accounts](https://docs.codat.io/banking-api#/schemas/Account) for a given company's connection.
63
+
64
+
[Accounts](https://docs.codat.io/banking-api#/schemas/Account) are financial accounts maintained by a bank or other financial institution.
65
+
66
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
Copy file name to clipboardExpand all lines: banking/docs/sdks/transactioncategories/README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,18 @@ Hierarchical categories associated with a transaction for greater contextual mea
7
7
### Available Operations
8
8
9
9
*[get](#get) - Get transaction category
10
-
*[list](#list) - List all transaction categories
10
+
*[list](#list) - List transaction categories
11
11
12
12
## get
13
13
14
-
Gets a specified bank transaction category for a given company
14
+
The *Get transaction category* endpoint returns a single transaction category for a given transactionCategoryId.
15
+
16
+
[Transaction categories](https://docs.codat.io/banking-api#/schemas/TransactionCategory) are associated with a transaction to provide greater contextual meaning to transaction activity.
17
+
18
+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/banking?view=tab-by-data-type&dataType=banking-transactionCategories) for integrations that support getting a specific transaction category.
19
+
20
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
21
+
15
22
16
23
### Example Usage
17
24
@@ -52,7 +59,12 @@ if res.transaction_category is not None:
52
59
53
60
## list
54
61
55
-
Gets a list of hierarchical categories associated with a transaction for greater contextual meaning to transactionactivity.
62
+
The *List transaction categories* endpoint returns a list of [transaction categories](https://docs.codat.io/banking-api#/schemas/TransactionCategory) for a given company's connection.
63
+
64
+
[Transaction categories](https://docs.codat.io/banking-api#/schemas/TransactionCategory) are associated with a transaction to provide greater contextual meaning to transaction activity.
65
+
66
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
Copy file name to clipboardExpand all lines: banking/docs/sdks/transactions/README.md
+20-3Lines changed: 20 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,14 @@ An immutable source of up-to-date information on income and expenditure.
12
12
13
13
## get
14
14
15
-
Gets a specified bank transaction for a given company
15
+
The *Get transaction* endpoint returns a single transaction for a given transactionId.
16
+
17
+
[Transactions](https://docs.codat.io/banking-api#/schemas/Transaction) provide an immutable source of up-to-date information on income and expenditure.
18
+
19
+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/banking?view=tab-by-data-type&dataType=banking-transactions) for integrations that support getting a specific transaction.
20
+
21
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
22
+
16
23
17
24
### Example Usage
18
25
@@ -53,7 +60,12 @@ if res.transaction is not None:
53
60
54
61
## list
55
62
56
-
Gets a list of transactions incurred by a bank account.
63
+
The *List transactions* endpoint returns a list of [transactions](https://docs.codat.io/banking-api#/schemas/Transaction) for a given company's connection.
64
+
65
+
[Transactions](https://docs.codat.io/banking-api#/schemas/Transaction) provide an immutable source of up-to-date information on income and expenditure.
66
+
67
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
68
+
57
69
58
70
### Example Usage
59
71
@@ -97,7 +109,12 @@ if res.transactions is not None:
97
109
98
110
## ~~list_bank_transactions~~
99
111
100
-
Gets a list of transactions incurred by a company across all bank accounts.
112
+
The *List transactions* endpoint returns a list of [transactions](https://docs.codat.io/banking-api#/schemas/Transaction) for a given company's connection.
113
+
114
+
[Transactions](https://docs.codat.io/banking-api#/schemas/Transaction) provide an immutable source of up-to-date information on income and expenditure.
115
+
116
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
117
+
101
118
102
119
> :warning:**DEPRECATED**: this method will be removed in a future release, please migrate away from it as soon as possible. Use `list` instead.
Gets a list of balances for a bank account including end-of-day batch balance or running balances per transaction.
18
+
The *List account balances* endpoint returns a list of [account balances](https://docs.codat.io/banking-api#/schemas/AccountBalance) for a given company's connection.
19
+
20
+
[Account balances](https://docs.codat.io/banking-api#/schemas/AccountBalance) are balances for a bank account, including end-of-day batch balance or running balances per transaction.
21
+
22
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
0 commit comments