Show Developer Menu

GET /systems

Issuing a GET call to /systems will allow you to retrieve the systems for the Brand.

Example Request
curl 'https://{brand}.reamaze.io/api/v1/systems' \
  -u {login-email}:{api-token} \
  -H 'Accept: application/json'
Example Response
[{
  "id": "{system-id}",
  "title": "Neat",
  "account_id": 787258272,
  "brand_id": 787258272,
  "created_at": "2020-02-05T11:05:20.424-08:00",
  "updated_at": "2020-02-05T11:05:20.424-08:00",
  "status": "partial_outage",
  "active_incidents": [{
    ...
    "updates": [{
      ...
    }],
    "incidents_systems": [{
      ...
    }]
  }]
}]