Phone number fields added to Users

We updated the User API to return the phone numbers from the CRM. Visit the Users section for detailed information.

Example request:

curl -X GET 'https://receivers.leadrouter.realgeeks.com/rest/sites/{site-uuid}/users' \ 
  -u '{user}:{password}'

Example response:

[
    {
        "id": "1111",
        "role": "Agent",
        "admin": true,
        "name": "Aaron Van Bokhoven",
        "email": "aaron@realgeeks.com",
        "phone_company": "8081231234",
        "phone_office": "8081111111",
        "phone_cell": "8082222222",
        "phone_home": "8083333333",
        "signature": "Aloha",
    },
    {
        "id": "2222",
        "role": "Agent",
        "admin": true,
        "name": "Aaron Test",
        "email": "aaron@realgeeks.com",
        "phone_company": "8081231223",
    },
    {
        "id": "3333",
        "role": "Lender",
        "name": "Aaron Van Lender",
        "email": "aaron+lender@realgeeks.com",
        "phone_home": "80811111111",
    }
]

These fields are editable in the CRM under the user settings:

Leave a comment