POST api/Users/CheckUserDuplicate_DataExists

Request Information

URI Parameters

None.

Body Parameters

CheckUserDuplicateDataModel
NameDescriptionTypeAdditional information
SearchType

string

None.

SearchData

string

None.

CountryID

integer

None.

CountryName

string

None.

SearchFrom

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SearchType": "sample string 1",
  "SearchData": "sample string 2",
  "CountryID": 1,
  "CountryName": "sample string 3",
  "SearchFrom": "sample string 4"
}

application/xml, text/xml

Sample:
<CheckUserDuplicateDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <CountryID>1</CountryID>
  <CountryName>sample string 3</CountryName>
  <SearchData>sample string 2</SearchData>
  <SearchFrom>sample string 4</SearchFrom>
  <SearchType>sample string 1</SearchType>
</CheckUserDuplicateDataModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>