Skip to main content

Arguments

Returns

PerformBoostCharge

Initiate a boost charge for an electric vehicle (EV).

This will start charging the EV and will not stop until the battery reaches 100% charged.

If it is not possible to initiate a boost charge, a KT-CT-4357 error will be returned. It may have a boostChargeRefusalReasons extension which lists the reasons why the boost charge was refused. Possible reasons include:

  • BC_DEVICE_NOT_YET_LIVE (device is not yet live)
  • BC_DEVICE_RETIRED (device is retired)
  • BC_DEVICE_SUSPENDED (device is suspended)
  • BC_DEVICE_DISCONNECTED (device is disconnected)
  • BC_DEVICE_NOT_AT_HOME (device is not at home)
  • BC_BOOST_CHARGE_IN_PROGRESS (boost charge already in progress)
  • BC_DEVICE_FULLY_CHARGED (device is already fully charged)

Allowed Viewers

Customer Partner User Third party

Rate Limits

Key Steps
user ['300/h']

Query Complexity

5

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

mutation TriggerBoostCharge($input: AccountNumberInput) { triggerBoostCharge(input: $input) { krakenflexDevice { ...KrakenFlexDeviceTypeFragment } } }

Variables

{ "input": AccountNumberInput }

Response

{ "data": { "triggerBoostCharge": { "krakenflexDevice": KrakenFlexDeviceType } } }