Swift3 / Cognite API v1 / Create extraction pipelines
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.
// {
// "items": [
// {
// "dataSetId": 6090952878084188,
// "externalId": "est proident quis Ut",
// "name": "proident",
// "description": "quis",
// "rawTables": [
// ],
// "schedule": "On trigger",
// "contacts": [
// ],
// "metadata": {},
// "source": "dolore voluptate la",
// "documentation": "esse laborum sed laboris"
// },
// {
// "dataSetId": 6120166289297592,
// "externalId": "ut culpa do pariatur cupidatat",
// "name": "cupidatat ipsum",
// "description": "est veniam dolor irure",
// "rawTables": [
// ],
// "schedule": "829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355",
// "contacts": [
// ],
// "metadata": {},
// "source": "ad Duis",
// "documentation": "quis reprehenderit"
// }
// ]
// }
let json = CkoJsonObject()!
json.updateInt("items[0].dataSetId", value: 123)
json.update("items[0].externalId", value: "est proident quis Ut")
json.update("items[0].name", value: "proident")
json.update("items[0].description", value: "quis")
json.updateNewArray("items[0].rawTables")
json.update("items[0].schedule", value: "On trigger")
json.updateNewArray("items[0].contacts")
json.updateNewObject("items[0].metadata")
json.update("items[0].source", value: "dolore voluptate la")
json.update("items[0].documentation", value: "esse laborum sed laboris")
json.updateInt("items[1].dataSetId", value: 123)
json.update("items[1].externalId", value: "ut culpa do pariatur cupidatat")
json.update("items[1].name", value: "cupidatat ipsum")
json.update("items[1].description", value: "est veniam dolor irure")
json.updateNewArray("items[1].rawTables")
json.update("items[1].schedule", value: "829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355")
json.updateNewArray("items[1].contacts")
json.updateNewObject("items[1].metadata")
json.update("items[1].source", value: "ad Duis")
json.update("items[1].documentation", value: "quis reprehenderit")
http.setRequestHeader("content-type", value: "application/json")
http.setRequestHeader("api-key", value: "{{api-key}}")
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/api/v1/projects/{{project}}/extpipes", 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 "api-key: {{api-key}}"
-H "content-type: application/json"
-d '{
"items": [
{
"dataSetId": 6090952878084188,
"externalId": "est proident quis Ut",
"name": "proident",
"description": "quis",
"rawTables": [],
"schedule": "On trigger",
"contacts": [],
"metadata": {},
"source": "dolore voluptate la",
"documentation": "esse laborum sed laboris"
},
{
"dataSetId": 6120166289297592,
"externalId": "ut culpa do pariatur cupidatat",
"name": "cupidatat ipsum",
"description": "est veniam dolor irure",
"rawTables": [],
"schedule": "829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355",
"contacts": [],
"metadata": {},
"source": "ad Duis",
"documentation": "quis reprehenderit"
}
]
}'
https://domain.com/api/v1/projects/{{project}}/extpipes
Postman Collection Item JSON
{
"id": "createExtPipes",
"name": "Create extraction pipelines",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"extpipes"
],
"query": [
],
"variable": [
]
},
"method": "POST",
"header": [
{
"key": "api-key",
"value": "{{api-key}}",
"description": "An admin can create API keys in the Cognite console."
},
{
"key": "content-type",
"value": "application/json"
}
],
"description": "Creates multiple new extraction pipelines. A maximum of 1000 extraction pipelines can be created per request.",
"body": {
"mode": "raw",
"raw": "{\n \"items\": [\n {\n \"dataSetId\": 6090952878084188,\n \"externalId\": \"est proident quis Ut\",\n \"name\": \"proident\",\n \"description\": \"quis\",\n \"rawTables\": [],\n \"schedule\": \"On trigger\",\n \"contacts\": [],\n \"metadata\": {},\n \"source\": \"dolore voluptate la\",\n \"documentation\": \"esse laborum sed laboris\"\n },\n {\n \"dataSetId\": 6120166289297592,\n \"externalId\": \"ut culpa do pariatur cupidatat\",\n \"name\": \"cupidatat ipsum\",\n \"description\": \"est veniam dolor irure\",\n \"rawTables\": [],\n \"schedule\": \"829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355\",\n \"contacts\": [],\n \"metadata\": {},\n \"source\": \"ad Duis\",\n \"documentation\": \"quis reprehenderit\"\n }\n ]\n}"
}
}
}