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: README.md
+24-19Lines changed: 24 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
3
3
Gate API
4
4
5
-
- API version: v4.106.23
6
-
- SDK version: 7.2.23
5
+
- API version: v4.106.25
6
+
- SDK version: 7.2.25
7
7
8
8
Welcome to Gate API
9
9
APIv4 provides operations related to spot, margin, and contract trading, including public interfaces for querying market data and authenticated private interfaces for implementing API-based automated trading.
@@ -52,7 +52,7 @@ Add this dependency to your project's POM:
52
52
<dependency>
53
53
<groupId>io.gate</groupId>
54
54
<artifactId>gate-api</artifactId>
55
-
<version>7.2.23</version>
55
+
<version>7.2.25</version>
56
56
<scope>compile</scope>
57
57
</dependency>
58
58
```
@@ -62,7 +62,7 @@ Add this dependency to your project's POM:
62
62
Add this dependency to your project's build file:
63
63
64
64
```groovy
65
-
compile "io.gate:gate-api:7.2.23"
65
+
compile "io.gate:gate-api:7.2.25"
66
66
```
67
67
68
68
### Others
@@ -75,7 +75,7 @@ mvn clean package
75
75
76
76
Then manually install the following JARs:
77
77
78
-
*`target/gate-api-7.2.23.jar`
78
+
*`target/gate-api-7.2.25.jar`
79
79
*`target/lib/*.jar`
80
80
81
81
To install the API client library to your local Maven repository, simply execute:
*OtcApi* | [**createOtcOrder**](docs/OtcApi.md#createOtcOrder) | **POST** /otc/order/create | Create fiat order
369
369
*OtcApi* | [**createStableCoinOrder**](docs/OtcApi.md#createStableCoinOrder) | **POST** /otc/stable_coin/order/create | Create stablecoin order
370
370
*OtcApi* | [**getUserDefaultBank**](docs/OtcApi.md#getUserDefaultBank) | **GET** /otc/get_user_def_bank | Get user's default bank account information
371
+
*OtcApi* | [**getBankList**](docs/OtcApi.md#getBankList) | **GET** /otc/bank_list | Get user bank card list
371
372
*OtcApi* | [**markOtcOrderPaid**](docs/OtcApi.md#markOtcOrderPaid) | **POST** /otc/order/paid | Mark fiat order as paid
372
373
*OtcApi* | [**cancelOtcOrder**](docs/OtcApi.md#cancelOtcOrder) | **POST** /otc/order/cancel | Fiat order cancellation
373
374
*OtcApi* | [**listOtcOrders**](docs/OtcApi.md#listOtcOrders) | **GET** /otc/order/list | Fiat order list
Copy file name to clipboardExpand all lines: docs/CreateTrailOrder.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
13
13
**priceOffset** | **String** | Callback ratio or price distance, e.g., `0.1` or `0.1%` | [optional]
14
14
**reduceOnly** | **Boolean** | Whether reduce only | [optional]
15
15
**positionRelated** | **Boolean** | Whether bound to a position (if position_related = true (position-related), then reduce_only must also be true) | [optional]
**text** | **String** | Order custom information, optional field. Used to identify the order source or set a user-defined ID. If non-empty, it must meet one of the following rules: 1. Internal Reserved Fields (identifying order source): - `apiv4`: API call 2. User-defined Fields (setting custom ID): - Must start with `t-`- The content after `t-`must not exceed 28 bytes in length - Can only contain: numbers, letters, underscores (_), hyphens (-), or dots (.) - Examples: `t-my-order-001`, `t-trail_2024.01`Note: User-defined fields must not conflict with internal reserved fields. | [optional]
17
17
**posMarginMode** | **String** | Position margin mode: isolated/cross | [optional]
18
18
**positionMode** | **String** | Position mode: single, dual, and dual_plus | [optional]
0 commit comments