POST api/PuntoPartida/InsertarPuntoPartida

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
objentidad
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "idPuntoPartida": 1,
  "nombre": "sample string 2",
  "idEstado": 3,
  "codUbigeo": "sample string 4",
  "direccion": "sample string 5",
  "idEmpresa": 1,
  "idAlmacen": 1,
  "idProveedor": 1,
  "idCliente": 1,
  "porDefecto": 1,
  "codReinfo": "sample string 6"
}

application/xml, text/xml

Sample:
<PuntoPartida xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mantenimiento.Datos.Entidades">
  <codReinfo>sample string 6</codReinfo>
  <codUbigeo>sample string 4</codUbigeo>
  <direccion>sample string 5</direccion>
  <idAlmacen>1</idAlmacen>
  <idCliente>1</idCliente>
  <idEmpresa>1</idEmpresa>
  <idEstado>3</idEstado>
  <idProveedor>1</idProveedor>
  <idPuntoPartida>1</idPuntoPartida>
  <nombre>sample string 2</nombre>
  <porDefecto>1</porDefecto>
</PuntoPartida>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>