Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
// 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"
// ]
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"name" value: @"my first watchlist"];
[json UpdateString: @"symbols[0]" value: @"AAPL"];
[json UpdateString: @"symbols[1]" value: @"LMND"];
[json UpdateString: @"symbols[2]" value: @"PLTR"];
[json UpdateString: @"symbols[3]" value: @"AMZN"];
[json UpdateString: @"symbols[4]" value: @"CSCO"];
[json UpdateString: @"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}}"];
CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/v2/watchlists" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
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": [
]
}