GET api/UserContacter?u={u}&t={t}&d={d}

查询联系人

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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": "4b1c7eee-1de2-4e3a-9e7e-a175831ffa19",
  "UserStaffID": 2,
  "ContacterStaffID": 3,
  "HasDeleted": true,
  "CreateTime": "2025-05-13T19:34:09.7951576+08:00",
  "UpdateTime": "2025-05-13T19:34:09.7951576+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-05-13T19:34:09.7951576+08:00</CreateTime>
  <HasDeleted>true</HasDeleted>
  <ID>4b1c7eee-1de2-4e3a-9e7e-a175831ffa19</ID>
  <UpdateTime>2025-05-13T19:34:09.7951576+08:00</UpdateTime>
  <UserStaffID>2</UserStaffID>
</UserContacter>