alarmStationInfo(homeId)

Arguments

homeId
ID!,non-nullrequired

Return type

homeId
ID!,non-null
status
contacts
Query sample
query alarmStationInfo($homeId: ID!) {
  alarmStationInfo(homeId: $homeId) {
    homeId 
    status 
    contacts {
      id 
      firstName 
      lastName 
      phoneNumber {
        countryCode 
        nationalNumber 
      }
    }
  }
}
Variables
{ "homeId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4" }
Response sample
{ "data": { "homeId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "status": "ENABLED", "contacts": [ { "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "firstName": "Example String", "lastName": "Example String", "phoneNumber": { "countryCode": "Example String", "nationalNumber": "Example String" } } ] } }