Skip to main content
GET
/
organizations
/
{orgId}
Get an organization
curl --request GET \
  --url https://dashboard.hologram.io/api/1/organizations/{orgId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": {
    "ccemails": "finance@hlgresearch.com",
    "id": 2345,
    "is_personal": false,
    "name": "Smart Things LLC",
    "ownerid": 1234,
    "pending": [
      {
        "email": "holly.graham@hlgresearch.com",
        "inviteid": 123
      }
    ],
    "users": [
      {
        "email": "holly.graham@hlgresearch.com",
        "first": "Joe",
        "id": 1234,
        "last": "Schmoe",
        "permissions": [
          "billing",
          "activation",
          "changeplan",
          "sbconfig",
          "sbtunnel",
          "deactivate",
          "org_management"
        ]
      }
    ]
  },
  "preflight_timeout_in_days": 365,
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.hologram.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic authentication using API keys. Set the username to apikey and the password to your API key.

You can find your API key on the Hologram Dashboard under Account Settings.

Path Parameters

orgId
integer
required

Single organization ID.

Example:

1234567

Response

200 - application/json

Successful response

data
object
success
boolean

Whether the request was successful or not

Example:

true