Get Payment Currencies

Provides a list of currencies supported for outgoing payments

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
           xmlns:tns="http://api.globalpay.convera.com" targetNamespace="http://api.globalpay.convera.com"
           elementFormDefault="qualified" attributeFormDefault="unqualified" vc:minVersion="1.1">
	<xs:include schemaLocation="common.xsd"/>
	<xs:element name="paymentCurrencyResponse" type="tns:PaymentCurrencyResponseType"/>
	<xs:element name="paymentCurrencyRequest" type="tns:PaymentCurrencyRequestType"/>
	<xs:complexType name="PaymentCurrencyRequestType">
		<xs:complexContent>
			<xs:extension base="tns:AbstractInputType">
				<xs:sequence>
					<xs:element name="clientId" type="xs:int"      />
					<xs:element name="countryCode" type="tns:CountryCodeType"      />
					<xs:element name="paymentTypeCode" type="tns:PaymentCodeType" minOccurs="0"   />
				</xs:sequence>
			</xs:extension>
		</xs:complexContent>
	</xs:complexType>
	<xs:complexType name="PaymentCurrencyResponseType">
		<xs:complexContent>
			<xs:extension base="tns:AbstractOutputType">
				<xs:sequence>
					<xs:element name="paymentCurrency" minOccurs="0" maxOccurs="unbounded">
						<xs:complexType>
							<xs:sequence>
								<xs:element name="code" type="tns:CurrencyCodeType"      />
								<xs:element name="description" type="xs:string"      />
								<xs:element name="precision" type="xs:int"      />
								<xs:element name="paymentType" maxOccurs="unbounded">
									<xs:complexType>
										<xs:sequence>
											<xs:element name="code" type="tns:PaymentCodeType"      />
											<xs:element name="description" type="xs:string"      />
											<xs:element name="order" type="xs:int"      />
										</xs:sequence>
									</xs:complexType>
								</xs:element>
							</xs:sequence>
						</xs:complexType>
					</xs:element>
				</xs:sequence>
			</xs:extension>
		</xs:complexContent>
	</xs:complexType>
</xs:schema>

<paymentCurrencyRequest xmlns="http://api.globalpay.convera.com">
    <clientId>123456789</clientId>
    <countryCode>FJI</countryCode>
    <paymentTypeCode>WIRE</paymentTypeCode>
</paymentCurrencyRequest>
<paymentCurrencyResponse xmlns="http://api.globalpay.convera.com">
    <status success="true"/>
    <paymentCurrency>
        <code>EUR</code>
        <description>Euro</description>
        <precision>2</precision>
        <paymentType>
            <code>WIRE</code>
            <description>WIRE</description>
            <order>3</order>
        </paymentType>
    </paymentCurrency>
    <paymentCurrency>
        <code>GBP</code>
        <description>British Pound</description>
        <precision>2</precision>
        <paymentType>
            <code>CREDIT_CARD</code>
            <description>CREDIT_CARD</description>
            <order>4</order>
        </paymentType>
        <paymentType>
            <code>ONLINE_BANK_TRANSFER</code>
            <description>ONLINE_BANK_TRANSFER</description>
            <order>1</order>
        </paymentType>
    </paymentCurrency>
    <paymentCurrency>
        <code>USD</code>
        <description>U.S. Dollar</description>
        <precision>2</precision>
        <paymentType>
            <code>CREDIT_CARD</code>
            <description>CREDIT_CARD</description>
            <order>4</order>
        </paymentType>
        <paymentType>
            <code>ONLINE_BANK_TRANSFER</code>
            <description>ONLINE_BANK_TRANSFER</description>
            <order>1</order>
        </paymentType>
        <paymentType>
            <code>WIRE</code>
            <description>WIRE</description>
            <order>3</order>
        </paymentType>
    </paymentCurrency>
</paymentCurrencyResponse>
Language
URL