-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Description
While placing order it throws error, Please help me to resolve this issue
Code
let body = {
coid: coid,
time: timestamporder,
symbol: "ETH/BTC",
orderPrice: "0.020110",
orderQty: "0.1",
orderType: "limit",
side: "buy"
}
request({
url: 'https://bitmax.io/1/api/v1/order',
method: "POST",
json: true,
body: body,
headers: {
'x-auth-key': apikey,
'x-auth-signature': hashInBase641,
'x-auth-timestamp': timestamporder,
'x-auth-coid': coid
},
},
function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body)
}else{
console.log(error);
}
}
);
Response
{ code: 2100, message: 'AccoutGroupMismatch' }
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels