Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
    • Mirror Endpoints
      • Get Mirror Linked Binance UID ListGET
      • MIrror Assets ApplicationPOST
      • MIrror Assets SettlementPOST
      • Get Mirror Operation RecordsGET
      • Get Mirrored Asset PositionsGET
      • Get Mirrored Asset SummaryGET
    • Get Transfer Detail with ExchangeGET
    • Get Transfer History with ExchangeGET
    • Transfer with ExchangePOST
    • Get Withdrawal HistoryGET
    • WithdrawalPOST
    • Get Withdrawal DetailsGET
    • Get Sub-Wallet List (V1)GET
logoPowered by Apifox
  1. Archive
  2. Mirror Endpoints

MIrror Assets Settlement

POST/open-api/v1/mirror/asset/settle

This method allows settling mirror assets by using the specified Mirror linked ID (mirrorLinkId).

API Key permission group : Enable Mirror Operation

Request

Header Params
open-apikey
string 
required

OpenAPI key string

signature
string 
required

Signature of the request

Body Params application/json
mirrorLinkId
string 
required

Unique identifier of Mirror linkage

operationType
string 
required

Mirror Operation Type : 2: Settle from Ceffu 3: Settle from Binance

coinSymbol
string 
required

Coin symbol

network
string 
required

Network symbol

amount
string 
required

Amount for mirroring

requestId
string 
required

Client unique identifier of mirror application

timestamp
integer 
required

Timestamp in milliseconds

Example
{
  "mirrorLinkId": "string",
  "operationType": "string",
  "coinSymbol": "string",
  "network": "string",
  "amount": "string",
  "requestId": "string",
  "timestamp": 0
}

Request samples

Responses

成功(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
detail of response, when code != '000000', it's detail of error
data
object (MirrorApplyVo) 
optional
recordId
string 
optional

Unique Identifier of Mirror operation record

status
integer 
optional

Status of Mirror asset application
20: In Progress
30: Success
99: Failed

requestId
string 
optional

Unique identifier for mirror application (provided by client)

code
string 
optional
message
string 
optional
Example
{
  "data": {
    "recordId": "23100038788988438622080004",
    "status": 0,
    "requestId": "1688988782242"
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 2 years ago