Skip to main content

Subscribe to symbol request

This interface needs to be called once when the project starts to subscribe to certain trading products so that real-time market information can be pushed to the message queue later.

Request address

  • API Address (requestURI) : /api/v1/book/subBookInfo

Request parameters

Parameter nameTypeRequirementdescription
loginLongRAdministrator account
symbolListRSymbol name list
businessSystemStringRBusiness system name

Sample request

{
"login": 100016,
"symbol": [
"UKOIL",
"USOIL"
],
"businessSystem": "ethh-service"
}

Response parameters

Parameter nameTypeRequirementDescription
////

Sample response

{
"code": "200",
"desc": "Success",
"data": null
}