Get Data of a Specific User

To get the details of any specific user. Specify the unique id of the user in your API request to get the data for that particular user.

Request URL

https://www.zohoapis.com/crm/v2/users/{user_id}

user_id - Specify the unique id of the user.

Request Method

GET

Scope

scope=ZohoCRM.users.{operation_type}

Possible operation types
ALL - Full access to users
READ - get user data

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v2/users/3652397000000281001"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
CopiedZCRMRestClient client = ZCRMRestClient.getInstance();
APIResponse response = 
client.getOrganizationInstance().getUser(123456789l);//userID 
ZCRMUser user = (ZCRMUser) response.getData(); 
      
Copied    def get_user(self):
        try:
            resp = ZCRMOrganization.get_instance().get_user(3719520000000415002)
            print(resp.status_code)
            if resp.status_code != 200:
                return
            users = [resp.data]
            for user in users:
                print(user.id)
                print(user.name)
                print(user.signature)
                print(user.country)
                crm_role = user.role
                if crm_role is not None:
                    print(crm_role.name)
                    print(crm_role.id)
                customize_info = user.customize_info
                if customize_info is not None:
                    print(customize_info.notes_desc)
                    print(customize_info.is_to_show_right_panel)
                    print(customize_info.is_bc_view)
                    print(customize_info.is_to_show_home)
                    print(customize_info.is_to_show_detail_view)
                    print(customize_info.unpin_recent_item)
                print(user.city)
                print(user.name_format)
                print(user.language)
                print(user.locale)
                print(user.is_personal_account)
                print(user.default_tab_group)
                print(user.street)
                print(user.alias)
                user_theme = user.theme
                if user_theme is not None:
                    print(user_theme.normal_tab_font_color)
                    print(user_theme.normal_tab_background)
                    print(user_theme.selected_tab_font_color)
                    print(user_theme.selected_tab_background)
                print(user.state)
                print(user.country_locale)
                print(user.fax)
                print(user.first_name)
                print(user.email)
                print(user.zip)
                print(user.decimal_separator)
                print(user.website)
                print(user.time_format)
                crm_profile = user.profile
                if crm_profile is not None:
                    print(crm_profile.id)
                    print(crm_profile.name)
                print(user.mobile)
                print(user.last_name)
                print(user.time_zone)
                print(user.zuid)
                print(user.is_confirm)
                print(user.full_name)
                print(user.phone)
                print(user.dob)
                print(user.date_format)
                print(user.status)
        except ZCRMException as ex:
            print(ex.status_code)
            print(ex.error_message)
            print(ex.error_code)
            print(ex.error_details)
            print(ex.error_content)
Copiedtry{
  $apiResponse=ZCRMOrganization::getInstance()->getUser($userId); // $userId - ID of the user whose data has to be fetched.
  $users=array($apiResponse->getData());
  foreach($users as $userInstance)
  {
  echo $userInstance->getCountry();
  $roleInstance=$userInstance->getRole();
  echo $roleInstance->getId();
  echo $roleInstance->getName();
  $customizeInstance=$userInstance->getCustomizeInfo();
  if($customizeInstance!=null)
  {
  echo $customizeInstance->getNotesDesc();
  echo $customizeInstance->getUnpinRecentItem();
  echo $customizeInstance->isToShowRightPanel();
  echo $customizeInstance->isBcView();
  echo $customizeInstance->isToShowHome();
  echo $customizeInstance->isToShowDetailView();
  }
  echo $userInstance->getCity();
  echo $userInstance->getSignature();
  echo $userInstance->getNameFormat();
  echo $userInstance->getLanguage();
  echo $userInstance->getLocale();
  echo $userInstance->isPersonalAccount();
  echo $userInstance->getDefaultTabGroup();
  echo $userInstance->getAlias();
  echo $userInstance->getStreet();
  $themeInstance=$userInstance->getTheme();
  if($themeInstance!=null)
  {
  echo $themeInstance->getNormalTabFontColor();
  echo $themeInstance->getNormalTabBackground();
  echo $themeInstance->getSelectedTabFontColor();
  echo $themeInstance->getSelectedTabBackground();
  }
  echo $userInstance->getState();
  echo $userInstance->getCountryLocale();
  echo $userInstance->getFax();
  echo $userInstance->getFirstName();
  echo $userInstance->getEmail();
  echo $userInstance->getZip();
  echo $userInstance->getDecimalSeparator();
  echo $userInstance->getWebsite();
  echo $userInstance->getTimeFormat();
  $profile= $userInstance->getProfile();
  echo $profile->getId();
  echo $profile->getName();
  echo $userInstance->getMobile();
  echo $userInstance->getLastName();
  echo $userInstance->getTimeZone();
  echo $userInstance->getZuid();
  echo $userInstance->isConfirm();
  echo $userInstance->getFullName();
  echo $userInstance->getPhone();
  echo $userInstance->getDob();
  echo $userInstance->getDateFormat();
  echo $userInstance->getStatus();
  }
  }
  catch(ZCRMException $e)
  {
  echo $e->getMessage();
  echo $e->getExceptionCode();
  echo $e->getCode();
CopiedZCRMRestClient restClient = ZCRMRestClient.GetInstance();
APIResponse response = restClient.GetOrganizationInstance().GetUser(33721640000); // 33721640000 is user id
ZCRMUser user = (ZCRMUser)response.Data;
      

Sample Response

Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}

Sample Response

Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}

Sample Response

Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}

Sample Response

Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}
Copied{
    "users": [
        {
            "country": null,
            "role": {
                "name": "CEO",
                "id": "3652397000000026005"
            },
            "city": null,
            "language": "en_US",
            "locale": "en_US",
            "microsoft": false,
            "Isonline": false,
            "Modified_By": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "street": null,
            "alias": null,
            "id": "3652397000000281001",
            "state": null,
            "fax": null,
            "country_locale": "US",
            "first_name": "Patricia",
            "email": "p.boyle@zylker.com",
            "Reporting_To": null,
            "zip": null,
            "created_time": "2018-12-05T10:02:20+05:30",
            "Modified_Time": "2018-12-05T10:08:23+05:30",
            "website": null,
            "time_format": "hh:mm a",
            "offset": 19800000,
            "profile": {
                "name": "Administrator",
                "id": "3652397000000026011"
            },
            "mobile": null,
            "last_name": "Boyle",
            "time_zone": "Asia/Kolkata",
            "created_by": {
                "name": "Patricia Boyle",
                "id": "3652397000000186017"
            },
            "zuid": "679952958",
            "confirm": true,
            "full_name": "Patricia Boyle",
            "territories": [],
            "phone": null,
            "dob": null,
            "date_format": "MM/dd/yyyy",
            "status": "active"
        }
    ]
}