How to Get a List of Zones
In this tutorial, we'll walk you through the steps to get a list of zones using the Butlr API. To get started, you'll need an access token, which can be obtained by logging in.
Prerequisites
Before proceeding with this tutorial, you'll need the following:
- A Butlr account
- An API access token
Step 1: Get an access token by logging in (more info)
To get an access token, you'll need to log in to the Butlr API using your email and password. Here's the curl command to do so:
curl --location --request POST 'https://api.butlr.io/api/v2/login' \
--header 'Content-Type: application/json' \
--data-raw '{
"username": "your@email.com",
"password": "your_password"
}'
Replace your@email.com
and your_password
with your email and password.
The response will contain your access token, which you'll need to include in subsequent requests.
Step 2: GraphQL query to get a list of zones
Once you have your access token, you can use it to make GraphQL queries to the Butlr API. Here's the GraphQL query to get a list of zones:
{
zones {
data {
client_id
floor_id
room_id
zone_id
name
zone_type
area {
unit
value
}
capacity {
max
mid
}
color
coordinates
}
}
}
This query will return a list of zones, along with their associated data.
Step 3: Send the GraphQL query using curl
To send the GraphQL query using curl, you'll need to include your access token in the Authorization header. Here's the curl command to do so:
curl --location 'https://api.butlr.io/api/v3/graphql' \
--header 'Authorization: Bearer INSERT_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{"query":"{\n zones {\n data {\n client_id\n floor_id\n room_id\n zone_id\n\n name\n zone_type\n area {\n unit\n value\n }\n capacity {\n max\n mid\n }\n\n color\n coordinates\n }\n }\n}","variables":{}}'
Replace INSERT_ACCESS_TOKEN
with your access token.
Conclusion
In this tutorial, we walked you through the steps to get a list of zones using the Butlr API. By following these steps, you should now be able to retrieve zone data and use it in your applications.