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
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
http.setRequestHeader("Content-Type", value: "application/json")
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb("https://domain.com/services/data/v{{version}}/support/dataCategoryGroups/:GROUP/dataCategories/:CATEGORY", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
print("Response status code = \(http.lastStatus.intValue)")
print("\(sbResponseBody.getAsString()!)")
}
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
https://domain.com/services/data/v{{version}}/support/dataCategoryGroups/:GROUP/dataCategories/:CATEGORY
Postman Collection Item JSON
{
"name": "Data Category Detail",
"request": {
"method": "GET",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/support/dataCategoryGroups/:GROUP/dataCategories/:CATEGORY",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"support",
"dataCategoryGroups",
":GROUP",
"dataCategories",
":CATEGORY"
],
"query": [
{
"key": "sObjectName",
"value": "",
"disabled": true
}
],
"variable": [
{
"key": "GROUP",
"value": ""
},
{
"key": "CATEGORY",
"value": ""
}
]
},
"description": "Get data category details and the child categories by a given category."
},
"response": [
]
}