get https://api.acefone.co.uk/v1/profile
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 Name | Description | Data Type |
|---|---|---|
| name | Name of the user | String |
| Email associated with user's account | String | |
| number | Contact number | Number |
| timezone | Timezone of user's account | String |
| city | City name | String |
| state | State | String |
| country | Country | String |
| address | Company address | String |
| company_name | Company name | String |
| active_extension_id | Extensions eid assigned to user if any | String |
| user_balance | Current user balance | Number |
| Currency | Money | String |
| 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" } |
