POST api/SocialMonitorNew/DeletePage
Request Information
URI Parameters
None.
Body Parameters
DeletePageModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode | string |
None. |
|
| PageID | string |
None. |
|
| UserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerCode": "sample string 1",
"PageID": "sample string 2",
"UserID": 3
}
application/xml, text/xml
Sample:
<DeletePageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SM.Data.ViewModels"> <CustomerCode>sample string 1</CustomerCode> <PageID>sample string 2</PageID> <UserID>3</UserID> </DeletePageModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OutputResult| Name | Description | Type | Additional information |
|---|---|---|---|
| errMsg | string |
None. |
|
| Success | boolean |
None. |
|
| result | Object |
None. |
|
| Token | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"errMsg": "sample string 1",
"Success": true,
"result": {},
"Token": "sample string 4"
}
application/xml, text/xml
Sample:
<OutputResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SM.Data.ViewModels"> <Success>true</Success> <Token>sample string 4</Token> <errMsg>sample string 1</errMsg> <result /> </OutputResult>