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.
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" }}Refresh access
RefreshAccess exchanges the refresh cookie for a new access token. The refresh token is read from the cookie and never appears in a request or a response body: the credential that lasts a month is not one a caller should be able to copy out of a log.
Request join
RequestJoin asks an Admin for an account. It is how a Visitor gets in when public signup is off, which is the default.