Using the below method, a profile can be obtained.

curl --request GET \
  --url https://api.acefone.co.uk/v1/profile \
  --header 'accept: application/json' \
  --header 'authorization: Authorization'

Response

Variable NameDescriptionData Type
nameName of the userString
emailEmail associated with user's accountString
numberContact numberNumber
timezoneTimezone of user's accountString
cityCity nameString
stateStateString
countryCountryString
addressCompany addressString
company_nameCompany nameString
active_extension_idExtensions eid assigned to user if anyString
user_balanceCurrent user balanceNumber
CurrencyMoneyString
Sample JSON
{
"name":"CRM-Client"
"email":"[email protected]"
"number":"91837XXXXX87"
"timezone":"Europe/London"
"city":"Gurugram"
"state":"Haryana"
"country":"India"
"address":"Gurugram"
"company_name":"CRM_CLIENT"
"active_extension_id":""
"user_balance":0
"currency":"GBP"
}
Language
Click Try It! to start a request and see the response here!