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
let queryParams = CkoJsonObject()
queryParams.UpdateString("intent", value: "role_assignment")
// Adds the "Authorization: Bearer {{token}}" header.
http.AuthToken = "{{token}}"
var resp: CkoHttpResponse? = http.QuickRequestParams("GET", url: "https://domain.com/accounts/api/cs/conditionalAssignments", json: queryParams)
if http.LastMethodSuccess == false {
print("\(http.LastErrorText)")
return
}
print("\(resp!.StatusCode.intValue)")
print("\(resp!.BodyStr)")
resp = nil
}
Curl Command
curl -G -d "intent=role_assignment"
-H "Authorization: Bearer {{token}}"
https://domain.com/accounts/api/cs/conditionalAssignments
Postman Collection Item JSON
{
"name": "Get all conditional assignments",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/accounts/api/cs/conditionalAssignments?intent=role_assignment",
"host": [
"{{url}}"
],
"path": [
"accounts",
"api",
"cs",
"conditionalAssignments"
],
"query": [
{
"key": "intent",
"value": "role_assignment"
}
]
}
},
"response": [
]
}