Skip to main content
GET
/
organizations
/
{orgId}
/
devices
/
plans
List organization data plans
curl --request GET \
  --url https://dashboard.hologram.io/api/1/organizations/{orgId}/devices/plans \
  --header 'Authorization: Basic <encoded-value>'
{
  "success": true,
  "data": [
    {
      "count": 6384,
      "planid": 1234,
      "planname": "Global Standard Flat Rate",
      "zone": "global"
    },
    {
      "count": 406,
      "planid": 1245,
      "planname": "Verizon with Global Backup Network-Level Billing",
      "zone": "global"
    },
    {
      "count": 381,
      "planid": 1235,
      "planname": "Global Extended Flat Rate",
      "zone": "global"
    },
    {
      "count": 71,
      "planid": 1236,
      "planname": "US Only 1 GB Flat Rate",
      "zone": "US"
    },
    {
      "count": 288,
      "planid": 1246,
      "planname": "Global 250 MB Flat Rate",
      "zone": "global"
    }
  ]
}

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

List of data plans with device counts

success
boolean
data
object[]