Request
Body Params application/json
{
"identity": "example@example.com",
"password": "tFVsEWqS@cBa2"
}
Request Code Samples
curl --location --request POST 'https://api.solariance.de/v1/user/auth/pw' \
--header 'Content-Type: application/json' \
--data-raw '{
"identity": "example@example.com",
"password": "tFVsEWqS@cBa2"
}'
Responses
application/json {
"code": 200,
"message": "User xxxx authenticated successfully",
"data": {
"token": "eyxxx",
"user_id": "xxxx",
"system_ids": [
"PVXXX1",
"PVXXX2",
"PVXXX3"
],
"country_code": "de"
}
}
Modified at 2025-06-10 09:50:40