View, create, update and manage tabs (dashboards) associated with the requesting company.

GET /tabs

DescriptionGet a list of all the tabs to which the user has access.
Permissionsdashboard.library
Resource URLhttps://app.klipfolio.com/api/1.0/tabs
Parametersclient_id (string) — show only tabs that belong to a specific client

Example Request

GET https://app.klipfolio.com/api/1/tabs

Example Response

{
 "data": {
       "id": "3c7b25bd388fc9a348d7c3e136986efb",
       "name": "Examples",
       "description": "Example Klips"
  },
 "meta": {
     "status": 200,
     "success": true
 }
}

GET /tabs/{id}

DescriptionGet the details for the specific tab.
Permissionsdashboard.library
Resource URLhttps://app.klipfolio.com/api/1.0/tabs/{id}
Parametersfull (true/false) — include associations in the listing (klip_instances, share_rights)

Example Request

GET https://app.klipfolio.com/api/1/tabs/012345679012345978abcd

Example Response

{
 "data": {
       "id": "012345679012345978abcd",
        "company":"What Inc.",
   "name":"Examples",
   "description":”Example Klips”,
   "created_by":"2e21eda434a5169f9890576ec4d8e789",
   "last_updated":"2014-11-13T21:38:27Z"
  },
 "meta": {
     "status": 200,
     "success": true
 }
}

POST /tabs

DescriptionCreate a new tab.
Permissionstab.build
Resource URLhttps://app.klipfolio.com/api/1.0/tabs
Fieldsname, description, client_id (optional)

Example Request

POST https://app.klipfolio.com/api/1/tabs -d "{'name':'New Tab', 'description':'This is a new tab'}"

Example Response

{
  "meta": {
     "status": 201,
     "success": true,
     “location”:”/tabs/ab123456789”
 }
}

PUT /tabs/{id}

DescriptionUpdate the specified tab.
Permissionstab.edit
Resource URLhttps://app.klipfolio.com/api/1.0/tabs/{id}
Parametersfull (true/false) — include associations in the listing (klip_instances, share_rights)

Example Request

PUT https://app.klipfolio.com/api/1/tabs/abcde0123456 -d "{'name':Update Tab', 'description':'Updated tab'}"

Example Response

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

DELETE /tabs/{id}

DescriptionDelete tab.
Permissionstab.delete
Resource URLhttps://app.klipfolio.com/api/1.0/tabs/{id}
Parametersname, description

Example Request

DELETE https://app.klipfolio.com/api/1/tabs/0987654321qwer

Example Response

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