POST api/MembresiaProducto/Crear

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
model
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "MEMBRESIA_PRODUCTO": {
    "ID_MEMBRESIA_PRECIO": 1,
    "ID_PRODUCTO": 2,
    "NOMBRE_PRODUCTO": "sample string 3",
    "BOLETOS": 4,
    "PRECIO": 5.0,
    "CELEBRACION": 6
  }
}

application/xml, text/xml

Sample:
<MEMBRESIA_PRODUCTO_MODELO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SorteosAPI.Models">
  <MEMBRESIA_PRODUCTO>
    <BOLETOS>4</BOLETOS>
    <CELEBRACION>6</CELEBRACION>
    <ID_MEMBRESIA_PRECIO>1</ID_MEMBRESIA_PRECIO>
    <ID_PRODUCTO>2</ID_PRODUCTO>
    <NOMBRE_PRODUCTO>sample string 3</NOMBRE_PRODUCTO>
    <PRECIO>5</PRECIO>
  </MEMBRESIA_PRODUCTO>
</MEMBRESIA_PRODUCTO_MODELO>

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>