GET api/FormasPago/{idPais}/{idProducto}/{lenguaje}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idPais

integer

Required

idProducto

integer

Required

lenguaje

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Payment
NameDescriptionTypeAdditional information
CodFormaPago

integer

None.

NombreFormaPago

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CodFormaPago": 1,
    "NombreFormaPago": "sample string 2"
  },
  {
    "CodFormaPago": 1,
    "NombreFormaPago": "sample string 2"
  }
]

text/html

Sample:
[{"CodFormaPago":1,"NombreFormaPago":"sample string 2"},{"CodFormaPago":1,"NombreFormaPago":"sample string 2"}]

application/xml, text/xml

Sample:
<ArrayOfPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JourneysDestination.ApiRest.Models">
  <Payment>
    <CodFormaPago>1</CodFormaPago>
    <NombreFormaPago>sample string 2</NombreFormaPago>
  </Payment>
  <Payment>
    <CodFormaPago>1</CodFormaPago>
    <NombreFormaPago>sample string 2</NombreFormaPago>
  </Payment>
</ArrayOfPayment>