nooks
GitHubInstall
People and groups

Update own profile

UpdateOwnProfile changes the signed-in Member's own name and email. Their own, and only their own. An Admin who wants somebody else's name changed asks them: an account is a person, and Nooks does not let one person edit another.

PATCH
/api/v1/members/me

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

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