PUT
/
accounts
/
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 · object

The body is of type object.

Response

202
_mintlify/placeholder

Successfully updated the account.