POST api/LandingPage/Delete
Request Information
URI Parameters
None.
Body Parameters
LandingPage| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| id_template | integer |
None. |
|
| name | string |
None. |
|
| description | string |
None. |
|
| date_reg | date |
None. |
|
| status | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"id_template": 1,
"name": "sample string 1",
"description": "sample string 2",
"date_reg": "2026-01-10T13:27:49.1355545+00:00",
"status": 1
}
application/xml, text/xml
Sample:
<LandingPage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models"> <date_reg>2026-01-10T13:27:49.1355545+00:00</date_reg> <description>sample string 2</description> <id>1</id> <id_template>1</id_template> <name>sample string 1</name> <status>1</status> </LandingPage>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Respuesta| Name | Description | Type | Additional information |
|---|---|---|---|
| resultado | integer |
None. |
|
| mensaje | string |
None. |
|
| data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"resultado": 1,
"mensaje": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models"> <data /> <mensaje>sample string 2</mensaje> <resultado>1</resultado> </Respuesta>