fitInstallations
Get details about FIT installations attached to an account, including any meters and previous readings.
Arguments
Account to query for FIT installations.
Returns
[InstallationType]Possible Errors
Allowed Viewers
Required Permissions
Can query fit installationsQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query FitInstallations($accountNumber: String!) {
fitInstallations(accountNumber: $accountNumber) {
fitId
fitTermsAgreedAt
inspectionAt
meters {
...FitMeterTypeFragment
}
propertyAddress {
...PropertyAddressTypeFragment
}
technologyType
}
}
Variables
{
"accountNumber": "A-ED70174C"
}
Response
{
"data": {
"fitInstallations": [
{
"fitId": "50767893",
"fitTermsAgreedAt": "1975-04-28T20:27:53.903761+00:00",
"inspectionAt": "2017-08-10T10:52:45.823425+00:00",
"meters": [FitMeterType],
"propertyAddress": PropertyAddressType,
"technologyType": "ANAEROBIC_DIGESTION"
}
]
}
}