lianja / Broker API / Non Trading Activities Events
Back to Collection Items
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loHttp = createobject("CkHttp")
loHttp.BasicAuth = .T.
loHttp.Login = "{{api_key}}"
loHttp.Password = "{{api_secret}}"
loSbResponseBody = createobject("CkStringBuilder")
llSuccess = loHttp.QuickGetSb("https://domain.com/v1/events/nta",loSbResponseBody)
if (llSuccess = .F.) then
? loHttp.LastErrorText
release loHttp
release loSbResponseBody
return
endif
? "Response status code = " + str(loHttp.LastStatus)
? loSbResponseBody.GetAsString()
release loHttp
release loSbResponseBody
Curl Command
curl -X GET
-u '{{api_key}}:{{api_secret}}'
https://domain.com/v1/events/nta
Postman Collection Item JSON
{
"name": "Non Trading Activities Events",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{HOST}}/v1/events/nta",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"events",
"nta"
],
"query": [
{
"key": "since",
"value": "2021-09-01",
"description": "Format: YYYY-MM-DD",
"disabled": true
},
{
"key": "until",
"value": "2021-09-13",
"description": "Format: YYYY-MM-DD",
"disabled": true
},
{
"key": "since_id",
"value": "",
"description": "Type: int",
"disabled": true
},
{
"key": "until_id",
"value": "",
"description": "Type: int",
"disabled": true
}
]
}
},
"response": [
]
}