Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
    • Get Prime Wallet supported coins listGET
    • Get Qualified Wallet supported coins listGET
    • Get Cosign Wallet supported coins listGET
    • Get Wallet ListGET
    • Get Asset DetailsGET
    • Get Wallet Asset SummaryGET
    • Get Deposit AddressGET
    • Get Deposit HistoryGET
    • Get Deposit Detail (V2)GET
    • Get Withdrawal Fee (estimated)GET
    • Get Withdrawal History (V2)GET
    • Get Withdrawal Details (V2)GET
    • Get Whitelisted Address ListGET
    • Get Correspondent’s OptionsGET
    • Create WalletPOST
    • Update Wallet DetailsPOST
    • Withdrawal (V2)POST
    • Transaction History ListPOST
    • Add/Edit Whitelisted AddressPOST
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
logoPowered by Apifox
  1. Wallet Endpoints

Get Correspondent’s Options

GET/open-api/v1/wallet/whitelist/options

This method allows you to get all configuration options of the whitelisted address.

API Key permission group : Enable Enquiry

Request

Query Params
timestamp
integer 
required

Current Timestamp in millisecond

Example:
1640995200000
Header Params
open-apikey
string 
required

OpenAPI key string

signature
string 
required

Signature of the request

Request samples

Responses

OK(200)
OK(200)
Bad Request(400)
Unauthorized(401)
Forbidden(403)
Record Not Found(404)
429(429)
Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
optional

response data, maybe null

Any of
options
object 
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
{
  "options": {
    "toFromType": {
      "0": "Virtual Assets Services Providers",
      "1": "Unhosted Wallet",
      "2": "Others (not specified above)"
    },
    "addressType": {
      "1": "Standard Address",
      "2": "Universal Address"
    },
    "correspondentType": {
      "0": "Entity",
      "1": "Individual"
    },
    "listOfVASP": [
      {
        "name": "..."
      }
    ]
  }
}
Last modified: 6 days ago