Do reset password for email

POST /api/logins/resets

Query parameters

  • iw-build-id string

    build id of the client

  • iw-package-id string

    package id of the client

application/json

Body Required

  • login object
    Hide login attribute Show login attribute object
    • username string

Responses

  • 200 application/json

    Do reset password for email

    Hide response attributes Show response attributes object
    • success boolean
    • message string
POST /api/logins/resets
curl \
 --request POST 'https://replace-with-own-host.iw-erp.de/api/logins/resets' \
 --header "x-session-token: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"login":{"username":"string"}}'
Request examples
{
  "login": {
    "username": "string"
  }
}
Response examples (200)
{
  "success": true,
  "message": "string"
}