Skip to main content
GET
/
core
/
organization
curl https://acusight.io/api/organization \
  -H "Authorization: Bearer <TOKEN>"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Acme Corporation",
    "slug": "acme-corp",
    "created_at": "2024-01-01T00:00:00Z",
    "device_count": 12,
    "member_count": 5
  }
}
Returns details about the current user’s organization including device and member counts.

Response

id
string
Unique identifier for the organization (UUID)
name
string
Display name of the organization
slug
string
URL-friendly identifier for the organization
created_at
string
ISO 8601 timestamp when the organization was created
device_count
integer
Number of devices registered to this organization
member_count
integer
Number of members in this organization
curl https://acusight.io/api/organization \
  -H "Authorization: Bearer <TOKEN>"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Acme Corporation",
    "slug": "acme-corp",
    "created_at": "2024-01-01T00:00:00Z",
    "device_count": 12,
    "member_count": 5
  }
}