API7 Docs
API7 GatewayAPI7 Enterprise Admin APIsUpdate my user profile

Update my user profile

PUT /api/me

PUT /api/me

Interactive request editor loads with JavaScript.

Authorization

X-API-KEY<token>

In: header

Request Body

application/json

Response Body

application/json

curl -X PUT "$API_BASE_URL/api/me" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'

Operation completed successfully with no response body.

""
Complete operation details and schema variants

PUT /api/me

Update my user profile

Update profile attributes of the currently authenticated dashboard user without changing role assignments.

Parameters

Request body

Content type: application/json

  • name (string, required):

Responses

  • 200: Operation completed successfully with no response body.
  • 400: Invalid arguments. Error details will be provided in the response.

cURL

curl -X PUT '$API_BASE_URL/api/me'