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
@@ -7,57 +7,44 @@ You can use that data for automating decisioning and surfacing new insights on t
7
7
Assess helps you make smarter credit decisions on small businesses by enabling you to pull your customers' latest data from the operating systems they are already using.
8
8
You can use that data for automating decisioning and surfacing new insights on the customer, all via one API.
*[get_excel_report_generation_status](docs/sdks/excelreports/README.md#get_excel_report_generation_status) - Get Excel report status
78
+
<!-- End Available Resources and Operations [operations] -->
79
+
80
+
81
+
82
+
<!-- Start Retries [retries] -->
83
+
## Retries
84
+
85
+
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.
86
+
87
+
To change the default retry strategy for a single API call, simply provide a retryConfig object to the call:
88
+
```python
89
+
import codatassess
90
+
from codatassess.models import operations
91
+
from codatassess.utils import BackoffStrategy, RetryConfig
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.
You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
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.
239
+
240
+
For example, you could specify a header for every request that this sdk makes as follows:
|`content_type`|*str*|:heavy_check_mark:| HTTP response content type for this operation |
9
-
|`error_message`|[Optional[shared.ErrorMessage]](../../models/shared/errormessage.md)|:heavy_minus_sign:| Your API request was not properly authorized. |
10
9
|`excel_status`|[Optional[shared.ExcelStatus]](../../models/shared/excelstatus.md)|:heavy_minus_sign:| OK |
11
10
|`status_code`|*int*|:heavy_check_mark:| HTTP response status code for this operation |
12
-
|`raw_response`|[requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response)|:heavy_minus_sign:| Raw HTTP response; suitable for custom response parsing |
11
+
|`raw_response`|[requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response)|:heavy_check_mark:| Raw HTTP response; suitable for custom response parsing |
0 commit comments