POST api/GuardarPoliticasSeguridadCliente

Request Information

URI Parameters

None.

Body Parameters

GuardarTratamientoDatosClienteViewModel
NameDescriptionTypeAdditional information
IdTratamientoDatos

integer

None.

IdOrden

integer

None.

Nombre

string

None.

Identificacion

string

None.

ListadoCheck

Collection of GuardarCheckPoint

None.

FechaAceptacionRechazo

date

None.

Request Formats

application/json, text/json

Sample:
{
  "IdTratamientoDatos": 1,
  "IdOrden": 2,
  "Nombre": "sample string 3",
  "Identificacion": "sample string 4",
  "ListadoCheck": [
    {
      "IdCheckPoint": 1,
      "Aceptado": true
    },
    {
      "IdCheckPoint": 1,
      "Aceptado": true
    }
  ],
  "FechaAceptacionRechazo": "2026-01-12T20:36:05.9543062-05:00"
}

application/xml, text/xml

Sample:
<GuardarTratamientoDatosClienteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PSILab.Data.ViewModels">
  <FechaAceptacionRechazo>2026-01-12T20:36:05.9543062-05:00</FechaAceptacionRechazo>
  <IdOrden>2</IdOrden>
  <IdTratamientoDatos>1</IdTratamientoDatos>
  <Identificacion>sample string 4</Identificacion>
  <ListadoCheck>
    <GuardarCheckPoint>
      <Aceptado>true</Aceptado>
      <IdCheckPoint>1</IdCheckPoint>
    </GuardarCheckPoint>
    <GuardarCheckPoint>
      <Aceptado>true</Aceptado>
      <IdCheckPoint>1</IdCheckPoint>
    </GuardarCheckPoint>
  </ListadoCheck>
  <Nombre>sample string 3</Nombre>
</GuardarTratamientoDatosClienteViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.