nooks
GitHubInstall
Sessions and passwords

Replace password

ReplacePassword sets a new password for the signed-in Member. A Member who was given a temporary password must call this before they can use Nooks.

POST
/api/v1/auth/password

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v1/auth/password" \  -H "Content-Type: application/json" \  -d '{}'
{  "member": {    "uid": "string",    "name": "string",    "email": "string",    "role": "ROLE_UNSPECIFIED",    "mustChangePassword": true,    "createdAt": "string",    "lastSignedInAt": "string"  }}