📘
Gleantap API
  • Introduction
  • Fetch Data
    • Attribute List
    • Attribute Event List
    • Locations
    • Class Schedule
    • Customers
    • Events for a Customer
    • Opted In Customers
    • Campaigns
    • Opted Out Customers
    • Workrooms
    • Forms
    • Form Submissions
  • Update Data
    • Create or Update Location
    • Create a Class
    • Delete Class
    • Create or Update Contact
    • SMS Opt-in a Contact
    • Add Memberships for Contact
    • Create an Event
    • Delete Contact
    • Merge Contacts
    • Send SMS Notification
    • Send Email Notifications
Powered by GitBook
On this page
  1. Fetch Data

Workrooms

PreviousOpted Out CustomersNextForms

Last updated 1 month ago

Get list of workrooms

get

Retrieve the list of available workrooms for the account

Header parameters
X-API-KEYstringRequired

Your API key

X-SECRET-KEYstringRequired

Your Secret key

Responses
200
Workrooms list retrieved successfully
application/json
401
Invalid API key or secret key
429
Too many requests in a day
get
GET /v2/ExternalApi/getWorkrooms HTTP/1.1
Host: api.gleantap.com
X-API-KEY: text
X-SECRET-KEY: text
Accept: */*
{
  "status": "success",
  "workrooms": [
    {
      "app_id": "app_id_123",
      "app_name": "App Name",
      "integrations": [
        {
          "type": "type_123",
          "status": "status_123",
          "data": {
            "location_id": "location_id_123"
          }
        }
      ]
    }
  ]
}