GET api/User/GetUserQueryName?UserID={UserID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UserQueryNameModel| Name | Description | Type | Additional information |
|---|---|---|---|
| XUserId | integer |
None. |
|
| QueryID | integer |
None. |
|
| QueryName | string |
None. |
|
| SubmitDateTime | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"XUserId": 1,
"QueryID": 2,
"QueryName": "sample string 3",
"SubmitDateTime": "2025-12-11T19:04:57.7292976+05:30"
},
{
"XUserId": 1,
"QueryID": 2,
"QueryName": "sample string 3",
"SubmitDateTime": "2025-12-11T19:04:57.7292976+05:30"
}
]
application/xml, text/xml
Sample:
<ArrayOfUserQueryNameModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Xacco.Models.Model">
<UserQueryNameModel>
<QueryID>2</QueryID>
<QueryName>sample string 3</QueryName>
<SubmitDateTime>2025-12-11T19:04:57.7292976+05:30</SubmitDateTime>
<XUserId>1</XUserId>
</UserQueryNameModel>
<UserQueryNameModel>
<QueryID>2</QueryID>
<QueryName>sample string 3</QueryName>
<SubmitDateTime>2025-12-11T19:04:57.7292976+05:30</SubmitDateTime>
<XUserId>1</XUserId>
</UserQueryNameModel>
</ArrayOfUserQueryNameModel>