Skip to Content

Broker IDs

This API is used to obtain participant IDs data (which can be synchronized once a day).

ℹ️Info

Request

Request Example

Response

Response Properties

NameTypeDescription
participant_broker_numbersobject[]participant data
∟ broker_idsint32[]broker IDs
∟ participant_name_cnstringparticipant name (zh-CN)
∟ participant_name_enstringparticipant name (en)
∟ participant_name_hkstringparticipant name (zh-HK)

Protobuf

protobuf
message ParticipantBrokerIdsResponse {
  repeated ParticipantInfo participant_broker_numbers = 1;
}

message ParticipantInfo {
  repeated int32 broker_ids = 1;
  string participant_name_cn = 2;
  string participant_name_en = 3;
  string participant_name_hk = 4;
}

Response JSON Example

json
{
  "participant_broker_numbers": [
    {
      "broker_ids": [7738, 7739],
      "participant_name_cn": "华兴金融 (香港)",
      "participant_name_en": "China Renaissance(HK)",
      "participant_name_hk": "華興金融 (香港)"
    },
    {
      "broker_ids": [6390, 6396, 6398, 6399],
      "participant_name_cn": "国信 (香港)",
      "participant_name_en": "Guosen(HK)",
      "participant_name_hk": "國信 (香港)"
    },
    {
      "broker_ids": [3168, 3169],
      "participant_name_cn": "泰嘉",
      "participant_name_en": "Tiger",
      "participant_name_hk": "泰嘉"
    }
  ]
}

Error Code

Proto Error CodeBusiness Error CodeDescrptionTroubleshooting Suggestions
3301600Invalid requestInvalid request parameters or unpacking request failed
3301606Request rate limitReduce the frequency of requests
7301602Server errorPlease try again or contact a technician to resolve the issue