Set User Password
Set passwords for non-SSO users during onboarding.
post
Path parameters
idstringRequired
Body
passwordstring · min: 1Required
currentPasswordstring | nullableOptional
Responses
200
OK
application/json
400
Bad Request
application/json
post
POST /public/v1/accounts/users/{id}/set-password HTTP/1.1
Host: api.s1.today
Content-Type: application/json
Accept: */*
Content-Length: 44
{
"password": "text",
"currentPassword": "text"
}
{
"id": "text",
"audit": {
"created": {
"at": "2025-08-10T12:25:51.729Z",
"by": "[Circular Reference]"
},
"updated": {
"at": "2025-08-10T12:25:51.729Z",
"by": "[Circular Reference]"
},
"invitationAcceptedAt": "2025-08-10T12:25:51.729Z"
},
"$meta": {
"omitted": [
"text"
]
},
"email": "text",
"status": "text",
"phone": {
"prefix": "text",
"number": "text"
},
"firstName": "text",
"lastName": "text",
"icon": "text",
"lastLoginAt": "2025-08-10T12:25:51.729Z",
"settings": {
"cultureCode": "text",
"languageCode": "text"
},
"name": "text",
"accounts": [
{
"id": "text",
"icon": "text",
"type": "Client",
"status": "Active",
"name": "text"
}
],
"currentAccount": {
"id": "text",
"icon": "text",
"type": "Client",
"status": "Active",
"name": "text"
}
}
Last updated
Was this helpful?