Solariance-API-V1
  1. User
Solariance-API-V1
  • Getting Started
  • Forecast
    • forecast/power
      GET
    • forecast/energy
      GET
    • forecast/temperature
      GET
    • forecast/export
      GET
    • forecast/optimizer
      POST
  • System
    • system/list
      GET
    • system/view
      GET
    • system/create
      POST
    • system/update
      PUT
    • system/delete
      DELETE
  • User
    • user/view
      GET
    • user/create
      POST
    • user/update
      PUT
    • user/delete
      DELETE
    • user/auth/pw
      POST
  • Ext
    • ext/pvgeneration
      GET
    • ext/pvshare
      GET
    • ext/price
      GET
    • ext/pvinstallation
      GET
  1. User

user/auth/pw

POST
https://api.solariance.de/v1/user/auth/pw

Request

Body Params application/json

Example
{
    "identity": "example@example.com",
    "password": "tFVsEWqS@cBa2"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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

🟢200Success
application/json
Body

Example
{
    "code": 200,
    "message": "User xxxx authenticated successfully",
    "data": {
        "token": "eyxxx",
        "user_id": "xxxx",
        "system_ids": [
            "PVXXX1",
            "PVXXX2",
            "PVXXX3"
        ],
        "country_code": "de"
    }
}
🟠401Unauthorized
🟠403Forbidden
🟠405Method Not Allowed
Modified at 2025-06-10 09:50:40
Previous
user/delete
Next
ext/pvgeneration
Built with