Skip to main content
PATCH
/
me
Updates the current authenticated user's profile information.
curl --request PATCH \
  --url https://api.example.com/me \
  --header 'Content-Type: application/json' \
  --data '
{
  "account": {
    "name": "<string>",
    "email": "<string>",
    "phonenumber": "<string>"
  },
  "accountPortals": [
    {
      "emailDailySummary": true,
      "portalId": 123,
      "accountId": 123
    }
  ]
}
'

Body

The profile data to update (only non-null fields will be updated).

account
object
accountPortals
object[] | null

Response

OK