Connect API
https://api.dex3.io/api/v1/Headers
Value
Description
Response Example
//All response (Success or error) will include "state" field.
{
"state": true,
"data": true
}{
"state": false,
"error": {
"message": "Please check form error",
"code": 403,
"errData": {
"notes": {
"type": "field",
"value": {
"user_id": "3"
},
"msg": "Invalid JSON provided",
"path": "notes",
"location": "body"
},
"expiration": {
"type": "field",
"msg": "Expiration is required",
"path": "expiration",
"location": "body"
},
"amount": {
"type": "field",
"value": "100.012",
"msg": "Amount must be a non-decimal positive value",
"path": "amount",
"location": "body"
}
}
}
}Last updated