PowerBuilder / Trader v2 API / Watchlist
Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "name": "my first watchlist",
// "symbols": [
// "AAPL",
// "LMND",
// "PLTR",
// "AMZN",
// "CSCO",
// "A"
// ]
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("name","my first watchlist")
loo_Json.UpdateString("symbols[0]","AAPL")
loo_Json.UpdateString("symbols[1]","LMND")
loo_Json.UpdateString("symbols[2]","PLTR")
loo_Json.UpdateString("symbols[3]","AMZN")
loo_Json.UpdateString("symbols[4]","CSCO")
loo_Json.UpdateString("symbols[5]","A")
loo_Http.SetRequestHeader("Apca-Api-Secret-Key","{{APCA_API_SECRET_KEY}}")
loo_Http.SetRequestHeader("Apca-Api-Key-Id","{{APCA_API_KEY_ID}}")
loo_Resp = loo_Http.PostJson3("https://domain.com/v2/watchlists","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_Json
Curl Command
curl -X POST
-H "Apca-Api-Key-Id: {{APCA_API_KEY_ID}}"
-H "Apca-Api-Secret-Key: {{APCA_API_SECRET_KEY}}"
-d '{
"name": "my first watchlist",
"symbols": ["AAPL","LMND","PLTR","AMZN","CSCO","A"]
}'
https://domain.com/v2/watchlists
Postman Collection Item JSON
{
"name": "Watchlist",
"request": {
"method": "POST",
"header": [
{
"key": "Apca-Api-Key-Id",
"value": "{{APCA_API_KEY_ID}}",
"type": "text"
},
{
"key": "Apca-Api-Secret-Key",
"value": "{{APCA_API_SECRET_KEY}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"my first watchlist\",\n \"symbols\": [\"AAPL\",\"LMND\",\"PLTR\",\"AMZN\",\"CSCO\",\"A\"]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HOST}}/v2/watchlists",
"host": [
"{{HOST}}"
],
"path": [
"v2",
"watchlists"
]
},
"description": "| Parameter | Type | Requirement |\n|-------------|---------------|:-----------:|\n| `name` | string | Required |\n| `symbols` | array[string] | Optional |"
},
"response": [
]
}