POST api/Category/categorydelete
Request Information
URI Parameters
None.
Body Parameters
categorydeleteDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserType | integer |
None. |
|
| UserId | string |
None. |
|
| id | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserType": 1,
"UserId": "sample string 2",
"id": "sample string 3"
}
application/xml, text/xml
Sample:
<categorydeleteDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMGServer.Web.Models.Dto"> <UserId>sample string 2</UserId> <UserType>1</UserType> <id>sample string 3</id> </categorydeleteDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AjaxResultEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Msg | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Msg": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<AjaxResultEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMGServer.Web.Models"> <Data /> <IsSuccess>true</IsSuccess> <Msg>sample string 2</Msg> </AjaxResultEntity>