Chilkat Online Tools

C++ / Salesforce Platform APIs / Lightning Usage by App Type

Back to Collection Items

#include <CkHttp.h>
#include <CkStringBuilder.h>

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

    CkHttp http;
    bool success;

    // Adds the "Authorization: Bearer <access_token>" header.
    http.put_AuthToken("<access_token>");
    http.SetRequestHeader("Content-Type","application/json");

    CkStringBuilder sbResponseBody;
    success = http.QuickGetSb("https://domain.com/services/data/v{{version}}/sobjects/LightningUsageByAppTypeMetrics",sbResponseBody);
    if (success == false) {
        std::cout << http.lastErrorText() << "\r\n";
        return;
    }

    std::cout << "Response status code = " << http.get_LastStatus() << "\r\n";
    std::cout << sbResponseBody.getAsString() << "\r\n";
    }

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
https://domain.com/services/data/v{{version}}/sobjects/LightningUsageByAppTypeMetrics

Postman Collection Item JSON

{
  "name": "Lightning Usage by App Type",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{_endpoint}}/services/data/v{{version}}/sobjects/LightningUsageByAppTypeMetrics",
      "host": [
        "{{_endpoint}}"
      ],
      "path": [
        "services",
        "data",
        "v{{version}}",
        "sobjects",
        "LightningUsageByAppTypeMetrics"
      ]
    },
    "description": "Return the total number of Lightning Experience and Salesforce Mobile users.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_lightning_usagebyapptypemetrics.htm"
  },
  "response": [
  ]
}