GET api/User/GetUserInfo
Request Information
URI Parameters
None.
Body Parameters
UserInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| Sex | integer |
None. |
|
| Age | integer |
None. |
|
| BirthDay | string |
None. |
|
| Education | string |
None. |
|
| HasTheory | boolean |
None. |
|
| HasPractice | boolean |
None. |
|
| WorkingAge | integer |
None. |
|
| ProjectID | integer |
None. |
|
| ProjectName | string |
None. |
|
| PTTitle | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": 2,
"Sex": 3,
"Age": 4,
"BirthDay": "sample string 5",
"Education": "sample string 6",
"HasTheory": true,
"HasPractice": true,
"WorkingAge": 9,
"ProjectID": 10,
"ProjectName": "sample string 11",
"PTTitle": "sample string 12"
}
application/xml, text/xml
Sample:
<UserInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HIV.ContractModel"> <Age>4</Age> <BirthDay>sample string 5</BirthDay> <Education>sample string 6</Education> <HasPractice>true</HasPractice> <HasTheory>true</HasTheory> <ID>1</ID> <PTTitle>sample string 12</PTTitle> <ProjectID>10</ProjectID> <ProjectName>sample string 11</ProjectName> <Sex>3</Sex> <UserID>2</UserID> <WorkingAge>9</WorkingAge> </UserInfoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.