Skip to main content
PUT
/
accounts
/
profile
Update an existing account profile
curl --request PUT \
  --url https://server.ownid.com/{appId}/accounts/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "firstName": "Sassi",
  "lastName": "Keshet"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The body is of type object.

Response

Successfully updated the account.