curl --request POST \
--url https://api.example.com/admin/account/detail \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accountCode": "4e361af7-0dd2-4f4f-9779-0a03eae0229b",
"accountID": null,
"languageID": 1
}
'{
"success": true,
"data": "<unknown>"
}Get Iser account details
curl --request POST \
--url https://api.example.com/admin/account/detail \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accountCode": "4e361af7-0dd2-4f4f-9779-0a03eae0229b",
"accountID": null,
"languageID": 1
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.