unicodeC / Cognite API v1 / List service accounts
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkStringBuilderW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkStringBuilderW sbResponseBody;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
CkHttpW_SetRequestHeader(http,L"api-key",L"{{api-key}}");
sbResponseBody = CkStringBuilderW_Create();
success = CkHttpW_QuickGetSb(http,L"https://domain.com/api/v1/projects/{{project}}/serviceaccounts",sbResponseBody);
if (success == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
return;
}
wprintf(L"Response status code = %d\n",CkHttpW_getLastStatus(http));
wprintf(L"%s\n",CkStringBuilderW_getAsString(sbResponseBody));
CkHttpW_Dispose(http);
CkStringBuilderW_Dispose(sbResponseBody);
}
Curl Command
curl -X GET
-H "api-key: {{api-key}}"
https://domain.com/api/v1/projects/{{project}}/serviceaccounts
Postman Collection Item JSON
{
"id": "getServiceAccounts",
"name": "List service accounts",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"serviceaccounts"
],
"query": [
],
"variable": [
]
},
"method": "GET",
"header": [
{
"key": "api-key",
"value": "{{api-key}}",
"description": "An admin can create API keys in the Cognite console."
}
],
"description": "Lists all the service accounts of the project."
}
}