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/delete

DELETE
https://api.solariance.de/v1/user/delete

Request

Query Params

Header Params

Body Params application/json

Example
{
    "password": "xxxx"
}

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 DELETE 'https://api.solariance.de/v1/user/delete?user_id=xxxx' \
--header 'Authorization: Bearer eyxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
    "password": "xxxx"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "code": 200,
    "message": "Delete user xxxx successful",
    "data": {}
}
🟠401Unauthorized
🟠403Forbidden
🟠405Method Not Allowed
Modified at 2025-09-10 09:17:29
Previous
user/update
Next
user/auth/pw
Built with