accountIoEligibility
Determines whether an account is eligible to register devices with SmartFlex.
Arguments
Returns
AccountIoEligibilityPossible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan view smartflex data
Query 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 AccountIoEligibility(
$accountNumber: String!,
$propertyId: Int
) {
accountIoEligibility(
accountNumber: $accountNumber,
propertyId: $propertyId
) {
isEligibleForIo
}
}
Variables
{
"accountNumber": "A-D15F38E8",
"propertyId": 55452681
}
Response
{
"data": {
"accountIoEligibility": {
"isEligibleForIo": true
}
}
}