POST api/Validate?strMsg={strMsg}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| strMsg | string |
Required |
Body Parameters
CheckMobiAPIRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PanelistID | integer |
None. |
|
| number | string |
None. |
|
| platform | string |
None. |
|
| type | string |
None. |
|
| LanguageCulture | string |
None. |
|
| IsWhatsapp | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"panelistID": 1,
"number": "sample string 2",
"platform": "sample string 3",
"type": "sample string 4",
"languageCulture": "sample string 5",
"isWhatsapp": true
}
text/xml
Sample:
<CheckMobiAPIRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity"> <IsWhatsapp>true</IsWhatsapp> <LanguageCulture>sample string 5</LanguageCulture> <PanelistID>1</PanelistID> <number>sample string 2</number> <platform>sample string 3</platform> <type>sample string 4</type> </CheckMobiAPIRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckMobiAPIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CLI_Id | string |
None. |
|
| StatusId | integer |
None. |
|
| Status | boolean |
None. |
|
| Message | string |
None. |
|
| IsLimitExceeded | boolean |
None. |
|
| IsUserActive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"isLimitExceeded": true,
"isUserActive": true,
"clI_Id": "sample string 1",
"statusId": 2
}
text/xml
Sample:
<CheckMobiAPIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity"> <CLI_Id>sample string 1</CLI_Id> <IsLimitExceeded>true</IsLimitExceeded> <IsUserActive>true</IsUserActive> <Message>sample string 2</Message> <Status>true</Status> <StatusId>2</StatusId> </CheckMobiAPIResponse>