POST api/v1/deletecategory
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| data | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"id_ass": 1,
"code": 2,
"prim": "sample string 3",
"description": "sample string 4",
"note": "sample string 5",
"language1": "sample string 6",
"language2": "sample string 7",
"language3": "sample string 8",
"language4": "sample string 9",
"language5": "sample string 10",
"image": "sample string 11",
"father": 12,
"category_type": 13,
"order_index": 14
}
text/xml
Sample:
<Category xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api"> <category_type>13</category_type> <code>2</code> <description>sample string 4</description> <father>12</father> <id_ass>1</id_ass> <image>sample string 11</image> <language1>sample string 6</language1> <language2>sample string 7</language2> <language3>sample string 8</language3> <language4>sample string 9</language4> <language5>sample string 10</language5> <note>sample string 5</note> <order_index>14</order_index> <prim>sample string 3</prim> </Category>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"data": null,
"rowcount": 1,
"status": true,
"msg_error": "sample string 3"
}
text/xml
Sample:
<outdata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api"> <data i:nil="true" /> <msg_error>sample string 3</msg_error> <rowcount>1</rowcount> <status>true</status> </outdata>