Clusters
Applications
Models
Artifacts
- GETGet Artifact
- DELDelete Artifact
- GETList Artifacts
- GETGet Artifact Version
- DELDelete Artifact Version
- GETList Artifact Versions
- PUTApply Artifact Version
- POSTDelete Artifact Version
- POSTGet Signed Urls For Artifact Version
- POSTCreate Multi Part Upload
- POSTStage Artifact Version
- POSTList Files For Artifact Version
- POSTMark Stage Failure
Prompts
Secret Groups
Model Deployments
Users
Personal Access Tokens
Virtual Accounts
Audit Logs
Users
Change Password
Change password for the authenticated user. Requires clientId and loginId in the request body.
POST
/
api
/
svc
/
v1
/
users
/
change-password
Copy
Ask AI
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users/change-password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"loginId": "<string>",
"newPassword": "<string>",
"oldPassword": "<string>"
}'
Copy
Ask AI
{}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200 - application/json
Password has been changed successfully.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/users/change-password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"loginId": "<string>",
"newPassword": "<string>",
"oldPassword": "<string>"
}'
Copy
Ask AI
{}
Assistant
Responses are generated using AI and may contain mistakes.