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: doc/client.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ The following parameters are configurable for the API Client:
5
5
6
6
| Parameter | Type | Description |
7
7
| --- | --- | --- |
8
-
|`square_version`|`str`| Square Connect API versions<br>*Default*: `'2023-10-18'`|
8
+
|`square_version`|`str`| Square Connect API versions<br>*Default*: `'2023-11-15'`|
9
9
|`custom_url`|`str`| Sets the base URL requests are made to. Defaults to `https://connect.squareup.com`<br>*Default*: `'https://connect.squareup.com'`|
10
10
|`environment`|`string`| The API environment. <br> **Default: `production`**|
11
11
|`http_client_instance`|`HttpClient`| The Http Client passed from the sdk user for making requests |
@@ -25,7 +25,7 @@ The API client can be initialized as follows:
25
25
```python
26
26
from square.client import Client
27
27
client = Client(
28
-
square_version='2023-10-18',
28
+
square_version='2023-11-15',
29
29
access_token='AccessToken'
30
30
)
31
31
```
@@ -48,7 +48,7 @@ API calls return an `ApiResponse` object that includes the following fields:
0 commit comments