Get a User

Get an existing user resource.

HTTP GET

GET /api/2013-12-01/Users/[User ID]
Returns information for the given User ID in your site.

Example Request

$ curl -G https://[Site Name].readyop.com/api/2013-12-01/Users/[User ID] \
-u "[API Account ID]:[API Token]"

Request Result

{
    "code": 0,
    "status": 200,
    "detail": "Success",
    "timestamp": "2020-01-15T22:39:54+00:00",
    "user": {
        "2FA": "Disabled",
        "Agencies": [
            {
                "Agency ID": 1,
                "Group": {
                    "Group ID": 2,
                    "Name": "Agency Administrator"
                }
            }, ...
        ],
        "Caller ID": {
            "Number": 18132897620,
            "Verified": "Y"
        },
        "Cell": null,
        "Desk": 18132897620,
        "Email": "john@readyop.com",
        "Language": 'en',
        "Name": "John Doe",
        "Status": "Active",
        "User ID": 123,
        "Username": "JohnD"
    }
}