Skip to main content
POST
/
admin
/
account
/
update
Update Iser account details
curl --request POST \
  --url https://api.example.com/admin/account/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accountCode": null,
  "languageID": 1,
  "title": "ACME",
  "accountOfficialBusinessName": "ACME of America, Inc. Limited",
  "taxIDNumber": "43-1238913",
  "governmentCountry": 1,
  "isSuspended": false
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
accountCode
string<uuid>
languageID
integer<int32>
default:1
title
string | null
default:ACME
accountOfficialBusinessName
string | null
default:ACME of America, Inc. Limited
taxIDNumber
string | null
default:43-1238913
governmentCountry
integer<int32> | null
default:1
isSuspended
boolean | null
default:false

Response

Success

success
boolean
data
unknown