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.
// {
// "activeOrganizationId": "{{organization_id}}",
// "name": "Production-2",
// "type": "production"
// }
let json = CkoJsonObject()!
json.update("activeOrganizationId", value: "{{organization_id}}")
json.update("name", value: "Production-2")
json.update("type", value: "production")
// Adds the "Authorization: Bearer {{token}}" header.
http.authToken = "{{token}}"
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/accounts/api/organizations/{{organization_id}}/environments", 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 "Authorization: Bearer {{token}}"
-d '{
"activeOrganizationId":"{{organization_id}}",
"name":"Production-2",
"type":"production"
}'
https://domain.com/accounts/api/organizations/{{organization_id}}/environments
Postman Collection Item JSON
{
"name": "Create a new environment",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"activeOrganizationId\":\"{{organization_id}}\",\r\n \"name\":\"Production-2\",\r\n \"type\":\"production\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/accounts/api/organizations/{{organization_id}}/environments",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"organizations",
"{{organization_id}}",
"environments"
]
}
},
"response": [
]
}