curl --request GET \
--url 'https://api.example.com/api/admin/org' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"createdAt": "2026-08-31T14:22:05Z",
"counts": {
"sites": 1,
"keys": 1
}
}
Org record and counts
The org record plus counts
GET
/
api
/
admin
/
org
curl --request GET \
--url 'https://api.example.com/api/admin/org' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"createdAt": "2026-08-31T14:22:05Z",
"counts": {
"sites": 1,
"keys": 1
}
}
Response
object
string
string
string (date-time)
Status codes
| Code | Meaning |
|---|---|
200 | The org record plus counts |
401 | Error |
curl --request GET \
--url 'https://api.example.com/api/admin/org' \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"createdAt": "2026-08-31T14:22:05Z",
"counts": {
"sites": 1,
"keys": 1
}
}
Last modified on August 31, 2026