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>"
}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>"
}The access token received from the authorization server in the OAuth 2.0 flow.