View and update client resources for all client accounts belonging to the requesting company.

GET /clients/{id}/resources

DescriptionLists all resources (dashboards, API resources, private links) allocated to a specified client. Users with admin role privileges have access to all clients.
Permissionsclient.access
Resource URLhttps://app.klipfolio.com/api/1.0/clients{id}/resources
Parametersid (string) — client id
full (true/false) — include resources (API Calls per Day, Dashboards, Users, Private Links)

Example Request

GET https://app.klipfolio.com/api/1.0/clients/7117c12053e064e6e05c5bfbddd9bab4/resources

Example Response

{
  "meta": {
    "success": true,
    "status": 200
  },
  "data": {
    "resources": [
      {
        "name": "API Calls per Day",
        "value": 10000
      },
      {
        "name": "Dashboards",
        "value": -1
      },
      {
        "name": "Users",
        "value": 3
      },
      {
        "name": "Private Links",
        "value": 0
      }
    ]
  }
}

PUT/clients/{id}/resources

DescriptionUpdate the specified resource. Users with admin role privileges have access to all clients.
Permissionsclient.edit
Resource URLhttps://app.klipfolio.com/api/1.0/clients/{id}/resources
FieldsResource names:
api.requests.perDay
dashboard.combined.total
company.seats
published.private.links

Example Request

https://app.klipfolio.com/api/1.0/clients/7117c12053e064e6e05c5bfbddd9bab4/resources -d
"resources": [{"name":"dashboard.combined.total", "value":7}]

Example Response

{
  "meta": {
    "success": true,
    "status": 200
  },
  "data": {}
}