POST api/Pagos/Datos_Tarjeta?IdTarjeta={IdTarjeta}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
IdTarjeta
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "ID_TARJETA": 1,
  "NUMERO_TARJETA": "sample string 2",
  "CVV": "sample string 3",
  "FECHA_EXPIRACION": "sample string 4"
}

application/xml, text/xml

Sample:
<Datos_Tarjeta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SorteosAPI.Models">
  <CVV>sample string 3</CVV>
  <FECHA_EXPIRACION>sample string 4</FECHA_EXPIRACION>
  <ID_TARJETA>1</ID_TARJETA>
  <NUMERO_TARJETA>sample string 2</NUMERO_TARJETA>
</Datos_Tarjeta>