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.
// {
// "dataType": "enum",
// "acceptedValues": [
// "OAS",
// "RAML"
// ],
// "displayName": "SubType",
// "tagKey": "subType"
// }
let json = CkoJsonObject()!
json.update("dataType", value: "enum")
json.update("acceptedValues[0]", value: "OAS")
json.update("acceptedValues[1]", value: "RAML")
json.update("displayName", value: "SubType")
json.update("tagKey", value: "subType")
// Adds the "Authorization: Bearer {{token}}" header.
http.authToken = "{{token}}"
var resp: CkoHttpResponse? = http.postJson3("https://domain.com/exchange/api/v2/organizations/{{organization_id}}/fields", 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 '{
"dataType": "enum",
"acceptedValues": ["OAS","RAML"],
"displayName": "SubType",
"tagKey": "subType"
}'
https://domain.com/exchange/api/v2/organizations/{{organization_id}}/fields
Postman Collection Item JSON
{
"name": "Create a custom field [enum]",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n\t\"dataType\": \"enum\",\r\n\t\"acceptedValues\": [\"OAS\",\"RAML\"],\r\n\t\"displayName\": \"SubType\",\r\n\t\"tagKey\": \"subType\"\r\n }",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{url}}/exchange/api/v2/organizations/{{organization_id}}/fields",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v2",
"organizations",
"{{organization_id}}",
"fields"
]
}
},
"response": [
]
}