-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest-api-examples.txt
304 lines (251 loc) · 7.77 KB
/
rest-api-examples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
1. sign up
let formData = {
"brokerName": xxxxx,
"user_email": xxxxx,
"refAccountId": xxxxx(IB account id)
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/quickRegister`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
2. verify email
let formData = {
"brokerName": xxxxx,
"user_email": xxxxx,
"resetPwToken": xxxxx(check your email to get the verification token)
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/resetPassword`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
3. login(this will retrieve web-trader token)
let formData = {
"brokerName": xxxxx,
"accountId": xxxxx,
"password": xxxxx
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/signinToTrade`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
4. get dashboard token
let formData = {
"brokerName": xxxxx,
"accountId": xxxxx,
"tradeToken": xxxxx(this is web-trader token that can be retrieved by calling signinToTrade)
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/gTT`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
5. get broker profile
let formData = {
"brokerName": xxxxx
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/getSS`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
6. propose copytrading
let formData = {
"brokerName": xxxxx,
"accountId": xxxxx,
"tradeToken": xxxxx(dashboard token),
"reqAccountId": xxxxx(if level == 0 || level == 1, copytrading hub id. if others, whom to copy),
"aBook": true or false(if reverse mode, then true),
"level": 0 or 1 or 2 or 3(0 stands for "Lots", 1:"Multiplier", 2:"LAMM", 3:"PAMM"},
"funds": xxxxx(multiplier),
"comment": ((level == 0 || level == 1) ? (brokerId + ":" + accountId) : null)
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/pCT`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {
if (res.res == "success") {
}
})
.fail(function(data) {});
----------------------------------------------------------------------------------
7. approve copytrading
let formData = {
"brokerName": xxxxx,
"accountId": xxxxx,
"tradeToken": xxxxx(dashboard token),
"reqAccountId": xxxxx(whom to approve),
"comment": null
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/aCT`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {
if (res.res == "success") {
}
})
.fail(function(data) {});
----------------------------------------------------------------------------------
8. cancel copytrading(remove from the follower side)
let formData = {
"brokerName": xxxxx,
"accountId": xxxxx,
"tradeToken": xxxxx(dashboard token),
"reqAccountId": xxxxx(if level == 0 || level == 1, copytrading hub id. if others, whom to copy),
"comment": ((level == 0 || level == 1) ? (brokerId + ":" + accountId) : null)
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/dCTI`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {
if (res.res == "success") {
}
})
.fail(function(data) {});
----------------------------------------------------------------------------------
9. reject copytrading(remove from the pro side)
let formData = {
"brokerName": xxxxx,
"accountId": xxxxx,
"tradeToken": xxxxx(dashboard token),
"reqAccountId": xxxxx(who is copying),
"comment": null
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/dCTE`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {
if (res.res == "success") {
}
})
.fail(function(data) {});
----------------------------------------------------------------------------------
10. retrieve copytrading list(pro list)
let proList = xxxxx(contact us to get your specific pro list url);
fetch(proList)
.then(response => response.json())
.then(data => {
let sortedData = data.sort((a, b) => {
return parseFloat(b.pl) - parseFloat(a.pl);
})
for (let i in sortedData) {
let account = sortedData[i];
}
});
----------------------------------------------------------------------------------
11. market order to open trade
let formData = {
"units": 0.01,
"instrument": "EUR/USD",
"type": "MARKET",
"price": 0
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/accounts/${accountId}/orders`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer TRADE " + xxxxx(webtrader token)
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
12. market order to close trade
let formData = {
"units": "ALL",
"price": 0,
"slippage": 0
};
$.ajax({
type: "PUT",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/accounts/${accountId}/trades/${tradeId}/close`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer TRADE " + xxxxx(webtrader token)
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
13. get account info(including all the open trades)
$.ajax({
type: "GET",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/accounts/${accountId}`,
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer TRADE " + xxxxx(webtrader token)
}
})
.done(function(res) {})
.fail(function(data) {});
----------------------------------------------------------------------------------
14. pg(deposit)
let formData = {
"id": xxxxx(payment id),
"broker_id": xxxxx
};
$.ajax({
type: "POST",
url: `${window.myConfig.brokerProtocol}${window.myConfig.brokerDomain}${window.myConfig.brokerPort}/dp2`,
data: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.done(function(res) {})
.fail(function(data) {});