Activating users
Registering a provisioned end-user
Once an end-user has been provisioned in the system using the Account Management API, end-users are ready to start their registration with the platform.
End-users start by using the activate account call activates an account for their provisioned user.
An example call in cURL format is described below:
curl --request POST \
--url https://<CE_API_BASE_URL>/v2/registration/no-gateway \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"email_address": "string",
"pincode": "string",
"voucher_code": "string"
}
'
The response of the token call will be like:
{
"status": "ok",
"message": "ok"
}
Once this call has been executed an end-user is in the registered state and able to log in by requesting a token to further onboard their meters.
Updated 4 months ago