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: bank-feeds/README.md
+24-31Lines changed: 24 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -4,16 +4,18 @@
4
4
ο»ΏBank Feeds API enables your SMB users to set up bank feeds from accounts in your application to supported accounting platforms.
5
5
<!-- End Codat Library Description -->
6
6
7
-
<!-- Start SDK Installation -->
7
+
<!-- Start SDK Installation [installation] -->
8
8
## SDK Installation
9
9
10
10
```bash
11
11
pip install codat-bankfeeds
12
12
```
13
-
<!-- End SDK Installation -->
13
+
<!-- End SDK Installation [installation] -->
14
14
15
15
## Example Usage
16
-
<!-- Start SDK Example Usage -->
16
+
<!-- Start SDK Example Usage [usage] -->
17
+
## SDK Example Usage
18
+
17
19
### Example
18
20
19
21
```python
@@ -37,12 +39,11 @@ if res.company is not None:
37
39
# handle response
38
40
pass
39
41
```
40
-
<!-- End SDK Example Usage -->
42
+
<!-- End SDK Example Usage [usage] -->
41
43
42
-
<!-- Start SDK Available Operations -->
44
+
<!-- Start Available Resources and Operations [operations]-->
43
45
## Available Resources and Operations
44
46
45
-
46
47
### [companies](docs/sdks/companies/README.md)
47
48
48
49
*[create](docs/sdks/companies/README.md#create) - Create company
@@ -78,19 +79,13 @@ if res.company is not None:
78
79
*[create](docs/sdks/transactions/README.md#create) - Create bank transactions
79
80
*[get_create_operation](docs/sdks/transactions/README.md#get_create_operation) - Get create operation
80
81
*[list_create_operations](docs/sdks/transactions/README.md#list_create_operations) - List create operations
81
-
<!-- End SDK Available Operations -->
82
-
83
-
84
-
85
-
<!-- Start Dev Containers -->
82
+
<!-- End Available Resources and Operations [operations] -->
86
83
87
84
88
85
89
-
<!-- End Dev Containers -->
90
86
91
87
92
-
93
-
<!-- Start Retries -->
88
+
<!-- Start Retries [retries] -->
94
89
## Retries
95
90
96
91
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
@@ -144,11 +139,11 @@ if res.company is not None:
144
139
# handle response
145
140
pass
146
141
```
147
-
<!-- End Retries -->
142
+
<!-- End Retries [retries] -->
148
143
149
144
150
145
151
-
<!-- Start Error Handling -->
146
+
<!-- Start Error Handling [errors] -->
152
147
## Error Handling
153
148
154
149
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
The Python SDK makes API calls using the (requests)[https://pypi.org/project/requests/] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
0 commit comments