Customer Migrations Guide: Post Account Import
API Endpoints
Overview
Use this endpoint to submit registration flows for meter points on an existing imported account. Note that this endpoint marks meter points to be registered. Kraken will then pick up these meter points and attempt to register them. Given a successful response from this API, it is still possible for the registration process to fail downstream.
The following optional URL params are available to tweak the behaviour of the API:
supply_start_date: date. If provided, this date will be used as the supply start date in the registration flows sent out by Kraken. If omitted, the earliest valid supply start date will be used.
Responses
The following responses may be returned from the API.
| Status code | Description |
|---|---|
200 - OK |
If the request is successful, a [
{
"import_supplier_code": "TENTACLE_ENERGY",
"external_account_number": "EXTERNAL-1234",
"meter_points": [
{
"mpxn": "1013004420117",
"status": "REGISTRATION_FLOW_SUCCESS"
},
{
"mpxn": "3406086401",
"error_detail": "TEN not current supplier",
"status": "REGISTRATION_FLOW_ERROR"
}
]
}
] |
404 - Not Found |
If an account is not found, or no meter points are found on the account to
register, then a [
{
"error_detail": "Account not found for EXTERNAL-1234.",
"import_supplier_code": "TENTACLE_ENERGY",
"external_account_number": "EXTERNAL-1234"
}
] |