GET api/SubscriptionPlanPay/GetPaymentCurrency?Currency={Currency}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Currency

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentCurrencyDc
NameDescriptionTypeAdditional information
PaymentCurrencyId

integer

None.

Currency

string

None.

Description

string

None.

PricePerDoller

string

None.

IsActive

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PaymentCurrencyId": 1,
    "Currency": "sample string 2",
    "Description": "sample string 3",
    "PricePerDoller": "sample string 4",
    "IsActive": "sample string 5"
  },
  {
    "PaymentCurrencyId": 1,
    "Currency": "sample string 2",
    "Description": "sample string 3",
    "PricePerDoller": "sample string 4",
    "IsActive": "sample string 5"
  }
]

text/html

Sample:
[{"PaymentCurrencyId":1,"Currency":"sample string 2","Description":"sample string 3","PricePerDoller":"sample string 4","IsActive":"sample string 5"},{"PaymentCurrencyId":1,"Currency":"sample string 2","Description":"sample string 3","PricePerDoller":"sample string 4","IsActive":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfPaymentCurrencyDc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BillGeneration.DataContract">
  <PaymentCurrencyDc>
    <Currency>sample string 2</Currency>
    <Description>sample string 3</Description>
    <IsActive>sample string 5</IsActive>
    <PaymentCurrencyId>1</PaymentCurrencyId>
    <PricePerDoller>sample string 4</PricePerDoller>
  </PaymentCurrencyDc>
  <PaymentCurrencyDc>
    <Currency>sample string 2</Currency>
    <Description>sample string 3</Description>
    <IsActive>sample string 5</IsActive>
    <PaymentCurrencyId>1</PaymentCurrencyId>
    <PricePerDoller>sample string 4</PricePerDoller>
  </PaymentCurrencyDc>
</ArrayOfPaymentCurrencyDc>