flexSupportedDevices
Devices capable of being registered with SmartFlex.
Arguments
The device type to get the supported devices for. Deprecated: use supportedDeviceType instead, which also includes charge points. Exactly one of deviceType or supportedDeviceType must be provided.
Deprecation
The 'deviceType' field is deprecated.Use `supportedDeviceType` instead, which also supports charge points via the FlexSupportedDeviceTypes enum.
- Marked as deprecated on 2026-06-01.
- Scheduled for removal on or after 2026-12-01.
The device type to get the supported devices for, including charge points. Exactly one of deviceType or supportedDeviceType must be provided.
Possible Errors
Allowed Viewers
Rate Limits
| Key | Steps |
|---|---|
ip |
['10/m'] |
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 FlexSupportedDevices($supportedDeviceType: FlexSupportedDeviceTypes) {
flexSupportedDevices(supportedDeviceType: $supportedDeviceType) {
deviceType
supportedDeviceType
supportedMakes {
...FlexSupportedMakeFragment
}
}
}
Variables
{
"supportedDeviceType": "CHARGE_POINTS"
}
Response
{
"data": {
"flexSupportedDevices": {
"deviceType": "BATTERIES",
"supportedDeviceType": "CHARGE_POINTS",
"supportedMakes": [FlexSupportedMake]
}
}
}