PATCH
/
me
/
profile
Update user's profile
curl --request PATCH \
  --url https://console.gmicloud.com/api/v1/me/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "john",
  "lastName": "doe"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

An access token used to authenticate a user and grant access to restricted APIs. It is issued by session APIs. For status codes related to this header, refer to the Common Headers Documentation.

Body

application/json

The profile update request body. Either firstName or lastName should be provided.

The body is of type object.

Response

Successfully updated the user's profile.