Skip to main content
POST
/
admin
/
api
/
v1
/
auth
/
change-password
Change Password
curl --request POST \
  --url https://api.example.com/admin/api/v1/auth/change-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "currentPassword": "<string>",
  "newPassword": "<string>"
}
'
{
  "ok": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Body of POST /admin/api/v1/auth/change-password.

currentPassword
string
required
newPassword
string
required

Response

Successful Response

Bare-success body for login / logout / change-password.

Login + logout side-effects (session cookie set/cleared) are carried on the HTTP response itself; the body just acknowledges the outcome.

ok
boolean
required
Last modified on May 22, 2026