Skip to main content

Arguments

deviceType : KrakenFlexDeviceTypes

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.
supportedDeviceType : FlexSupportedDeviceTypes

The device type to get the supported devices for, including charge points. Exactly one of deviceType or supportedDeviceType must be provided.

Returns

FlexSupportedDevices

A list of supported makes and models for a given device type.

Allowed Viewers

Customer Partner User Third party

Rate Limits

Key Steps
ip ['10/m']

Query Complexity

1

Examples

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

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] } } }