Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
    • Get MirrorX LinkId ListGET
    • Get MirrorX OrdersGET
    • Check MirrorX Available amountGET
    • Get MirrorX Asset PositionsGET
    • Place MirrorX OrdersPOST
  • Webhook
  • Archive
logoPowered by Apifox
  1. MirrorX Endpoints

Place MirrorX Orders

POST/open-api/v1/mirrorX/order

This method allows you to delegete/undelegate MirrorX assets by specified MirrorX linked ID (mirrorXLinkId)

API Key permission group : Enable Mirror Operation

Request

Header Params
open-apikey
string 
required

API key

signature
string 
required

Signature of the request

Body Params application/json
mirrorXLinkId
integer 
required

Unique identifier of MirrorX linkage

orderType
integer 
required

MirrorX Order Type : 10: delegate funds to Binance Third Party Custodian UIDs 20: undelegate funds from Binance Third Party Custodian UIDs

coinSymbol
string 
required

Coin symbol

amount
string 
required

Amount

requestId
string 
required

Client unique identifier of mirrorX delegation/undelegation order id

timestamp
integer 
required

Current timestamp in millisecond

Example
{
  "mirrorXLinkId": 85,
  "coinSymbol": "non",
  "orderType": 10,
  "amount": "55",
  "timestamp": 275404472892,
  "requestId": "59"
}

Request samples

Responses

The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object  | null 
optional

response data, maybe null

orderViewId
string 
required
status
enum<integer> 
required
Allowed values:
10203099
requestId
string 
required
code
string 
required

'000000' indicates success, while any others indicate failure.

message
string 
required

When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.

Example
{
  "data": {
    "orderViewId": "24073676755851542073280001",
    "status": 20,
    "requestId": "14"
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 9 months ago