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
Access bank transactions from an accounting platform.
6
+
3
7
### Available Operations
4
8
9
+
*[list_transactions](#list_transactions) - List bank account transactions
10
+
11
+
## list_transactions
12
+
13
+
The *List account bank transactions* endpoint returns a list of [bank account transactions](https://docs.codat.io/accounting-api#/schemas/BankTransactions) for a given company's connection.
14
+
15
+
[Bank account transactions](https://docs.codat.io/accounting-api#/schemas/BankTransactions) are records of money that has moved in and out of an SMB's bank account.
16
+
17
+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bankTransactions) for integrations that support listing bank transactions.
18
+
19
+
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
20
+
21
+
22
+
### Example Usage
23
+
24
+
```python
25
+
import codatlending
26
+
from codatlending.models import operations, shared
|`request`|[operations.ListAccountingBankAccountTransactionsRequest](../../models/operations/listaccountingbankaccounttransactionsrequest.md)|:heavy_check_mark:| The request object to use for the request. |
55
+
|`retries`|[Optional[utils.RetryConfig]](../../models/utils/retryconfig.md)|:heavy_minus_sign:| Configuration to override the default retry behavior of the client. |
Copy file name to clipboardExpand all lines: lending/docs/sdks/accountspayablebills/README.md
+97-1Lines changed: 97 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,59 @@
2
2
3
3
### Available Operations
4
4
5
+
*[download_attachment](#download_attachment) - Download bill attachment
5
6
*[get](#get) - Get bill
7
+
*[get_attachment](#get_attachment) - Get bill attachment
6
8
*[list](#list) - List bills
7
9
*[list_attachments](#list_attachments) - List bill attachments
8
10
11
+
## download_attachment
12
+
13
+
The *Download bill attachment* endpoint downloads a specific attachment for a given `billId` and `attachmentId`.
14
+
15
+
[Bills](https://docs.codat.io/accounting-api#/schemas/Bill) are invoices that represent the SMB's financial obligations to their supplier for a purchase of goods or services.
16
+
17
+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bills) for integrations that support downloading a bill attachment.
18
+
19
+
20
+
### Example Usage
21
+
22
+
```python
23
+
import codatlending
24
+
from codatlending.models import operations, shared
|`request`|[operations.DownloadAccountingBillAttachmentRequest](../../models/operations/downloadaccountingbillattachmentrequest.md)|:heavy_check_mark:| The request object to use for the request. |
50
+
|`retries`|[Optional[utils.RetryConfig]](../../models/utils/retryconfig.md)|:heavy_minus_sign:| Configuration to override the default retry behavior of the client. |
The *Get bill attachment* endpoint returns a specific attachment for a given `billId` and `attachmentId`.
108
+
109
+
[Bills](https://docs.codat.io/accounting-api#/schemas/Bill) are invoices that represent the SMB's financial obligations to their supplier for a purchase of goods or services.
110
+
111
+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bills) for integrations that support getting a bill attachment.
112
+
113
+
114
+
### Example Usage
115
+
116
+
```python
117
+
import codatlending
118
+
from codatlending.models import operations, shared
|`request`|[operations.GetAccountingBillAttachmentRequest](../../models/operations/getaccountingbillattachmentrequest.md)|:heavy_check_mark:| The request object to use for the request. |
144
+
|`retries`|[Optional[utils.RetryConfig]](../../models/utils/retryconfig.md)|:heavy_minus_sign:| Configuration to override the default retry behavior of the client. |
0 commit comments