Skip to main content
POST
/
update-user
Update your own profile
curl --request POST \
  --url https://api.wanderersguide.app/functions/v1/update-user \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "display_name": "<string>",
  "id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "image_url": "<string>",
  "background_image_url": "<string>",
  "site_theme": {
    "color": "<string>"
  },
  "is_admin": true,
  "is_mod": true,
  "is_developer": true,
  "is_community_paragon": true,
  "deactivated": true,
  "summary": "<string>",
  "organized_play_id": "<string>",
  "subscribed_content_sources": [
    {
      "source_id": 123,
      "source_name": "<string>",
      "added_at": "<string>"
    }
  ],
  "patreon": {},
  "api": {
    "clients": [
      {
        "id": "<string>",
        "name": "<string>",
        "api_key": "<string>",
        "description": "<string>",
        "image_url": "<string>"
      }
    ]
  }
}
'
{
  "status": "success",
  "data": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.wanderersguide.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key created in your Wanderer's Guide account settings. Send as Authorization: Bearer <key>. Used for direct API access from external tools and scripts.

Body

application/json
user_id
string<uuid>
required
display_name
string
required
id
integer
created_at
string<date-time>
image_url
string
background_image_url
string
site_theme
object
is_admin
boolean
is_mod
boolean
is_developer
boolean
is_community_paragon
boolean
deactivated
boolean
summary
string
organized_play_id
string
subscribed_content_sources
object[]
patreon
object
api
object

Response

200 - application/json

JSend success.

status
enum<string>
required
Available options:
success
data
boolean
required