Skip to main content
GET
/
organizations
/
{orgId}
/
devices
/
plans
Get data plan inventory for organization
curl --request GET \
  --url https://dashboard.hologram.io/api/1/organizations/{orgId}/devices/plans \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "data": [
    {
      "planid": 123,
      "planname": "<string>",
      "zone": "<string>",
      "count": 123,
      "activecount": 123,
      "predeploymentcount": 123
    }
  ]
}

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

ID of the organization

Response

OK

success
boolean

Indicates whether the request was successful.

Example:

true

data
object[]