GET api/UserContacter?u={u}&t={t}&d={d}
查询联系人
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| u |
用户ID |
integer |
Required |
| t |
[用户ID]|[用户密码,加密]|[requestTime]|[设备标识],加密 |
string |
Required |
| d |
d=[ContacterID=[联系人ID,long]] |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
查询联系人
UserContacter| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| UserStaffID |
用户ID |
integer |
None. |
| ContacterStaffID |
联系人ID |
integer |
None. |
| HasDeleted |
是否已删除联系人 |
boolean |
None. |
| CreateTime | date |
None. |
|
| UpdateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "c16961bb-7a06-4478-a2b5-01b1bed2aced",
"UserStaffID": 2,
"ContacterStaffID": 3,
"HasDeleted": true,
"CreateTime": "2025-12-16T04:09:23.9778033+08:00",
"UpdateTime": "2025-12-16T04:09:23.9778033+08:00"
}
application/xml, text/xml
Sample:
<UserContacter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Care365_V2.Model.IMSys"> <ContacterStaffID>3</ContacterStaffID> <CreateTime>2025-12-16T04:09:23.9778033+08:00</CreateTime> <HasDeleted>true</HasDeleted> <ID>c16961bb-7a06-4478-a2b5-01b1bed2aced</ID> <UpdateTime>2025-12-16T04:09:23.9778033+08:00</UpdateTime> <UserStaffID>2</UserStaffID> </UserContacter>