Auth

Update the authenticated user's profile

PATCH
/users/me/profile

Authorization

SupabaseBearer
AuthorizationBearer <token>

Supabase user access token (Authorization: Bearer JWT)

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://example.com/users/me/profile" \  -H "Content-Type: application/json" \  -d '{    "displayName": "string",    "fullName": "string"  }'
Empty
{  "message": "string"}
Empty