Chilkat Online Tools

C# / Anypoint Platform APIs / Get all conditional assignments

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Http http = new Chilkat.Http();
bool success;

Chilkat.JsonObject queryParams = new Chilkat.JsonObject();
queryParams.UpdateString("intent","role_assignment");

// Adds the "Authorization: Bearer {{token}}" header.
http.AuthToken = "{{token}}";

Chilkat.HttpResponse resp = http.QuickRequestParams("GET","https://domain.com/accounts/api/cs/conditionalAssignments",queryParams);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

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": [
  ]
}