Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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"
// ]
// }
let json = CkoJsonObject()!
json.update("name", value: "my first watchlist")
json.update("symbols[0]", value: "AAPL")
json.update("symbols[1]", value: "LMND")
json.update("symbols[2]", value: "PLTR")
json.update("symbols[3]", value: "AMZN")
json.update("symbols[4]", value: "CSCO")
json.update("symbols[5]", value: "A")
http.setRequestHeader("Apca-Api-Secret-Key", value: "{{APCA_API_SECRET_KEY}}")
http.setRequestHeader("Apca-Api-Key-Id", value: "{{APCA_API_KEY_ID}}")
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/v2/watchlists", contentType: "application/json", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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": [
]
}