POST api/User/IsValidUser
Request Information
URI Parameters
None.
Body Parameters
ValidateUser| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| Pwd | string |
None. |
|
| UserType | string |
None. |
|
| PageSize | integer |
None. |
|
| PageNo | integer |
None. |
|
| ContentType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"Pwd": "sample string 2",
"UserType": "sample string 3",
"PageSize": 4,
"PageNo": 5,
"ContentType": "sample string 6"
}
application/xml, text/xml
Sample:
<ValidateUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models.Zica"> <ContentType>sample string 6</ContentType> <PageNo>5</PageNo> <PageSize>4</PageSize> <Pwd>sample string 2</Pwd> <UserId>sample string 1</UserId> <UserType>sample string 3</UserType> </ValidateUser>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ModelResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseMessage": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ModelResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models.Zica"> <Data /> <ResponseCode>1</ResponseCode> <ResponseMessage>sample string 2</ResponseMessage> </ModelResponse>