v1
latestOpenAPI 3.1.02026-07-13143194365.4 KBprofiles
Update profile settings
Update the authenticated user's profile settings.
Supports:
- is_public: Toggle profile visibility (public/private)
- description: Set profile bio (max 280 characters, empty string clears it)
The response includes:
- is_profile_public: Current visibility state after the update
- description: Current profile bio
- profile_url: Public profile URL (null if the account has no handle)
Authentication: Authorization: Bearer <CLIENT_JWT>
patch/v1/account/profile
Headers
authorizationstring nullable
Bearer JWT issued by Grove that identifies the account.
Bearer JWT issued by Grove that identifies the account.
Request body
Example request
{
"theme": {
"accent_color": "#4CAF50",
"preset": "dark"
}
}Response
Successful Response
Example response
{
"theme": {
"accent_color": "#4CAF50",
"preset": "dark"
}
}