获取特定用户的数据
获取任何特定用户的详细信息。在API请求中指定用户的唯一ID来获取特定用户的数据。
请求URL
https://www.zohoapis.com.cn/crm/v2/users/{user_id}
user_id - 指定用户的唯一ID。
请求方法
GET
范围
scope=ZohoCRM.users.{operation_type}
可能的操作类型 |
---|
ALL - 完全访问用户 READ - 获取用户数据 |
示例请求
curl "https://www.zohoapis.com.cn/crm/v2/users/3652397000000281001"
-X GET
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
示例响应
{
"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"
}
]
}
示例请求
ZCRMRestClient client = ZCRMRestClient.getInstance();
APIResponse response =
client.getOrganisationInstance().getUser(123456789l);//userID
ZCRMUser user = (ZCRMUser) response.getData();
示例响应
{
"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"
}
]
}
示例请求
def get_user(self):
try:
resp=ZCRMOrganization.get_instance().get_user(1386586000000105001)
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_co
示例响应
{
"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"
}
]
}
示例请求
try{
$apiResponse=ZCRMOrganization::getInstance()->getUser($userId); // $userId - 必须获取数据的用户ID。
$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();
示例响应
{
"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"
}
]
}
示例请求
ZCRMRestClient restClient = ZCRMRestClient.GetInstance();
APIResponse response = restClient.GetOrganizationInstance().GetUser(33721640000); // 33721640000 是用户ID
ZCRMUser user = (ZCRMUser)response.Data;
示例响应
{
"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"
}
]
}