GET api/MobileTopups/GetGiftCardCountries/{countryFromISOCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
countryFromISOCode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Country
NameDescriptionTypeAdditional information
Name

string

None.

CountryCode

string

None.

ISOCode

string

None.

Type

string

None.

InstanceId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "CountryCode": "sample string 2",
    "ISOCode": "sample string 3",
    "Type": "sample string 4",
    "InstanceId": 5
  },
  {
    "Name": "sample string 1",
    "CountryCode": "sample string 2",
    "ISOCode": "sample string 3",
    "Type": "sample string 4",
    "InstanceId": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Objects">
  <Country>
    <InstanceId xmlns="http://schemas.datacontract.org/2004/07/Raza.Core">5</InstanceId>
    <CountryCode>sample string 2</CountryCode>
    <ISOCode>sample string 3</ISOCode>
    <Name>sample string 1</Name>
    <Type>sample string 4</Type>
  </Country>
  <Country>
    <InstanceId xmlns="http://schemas.datacontract.org/2004/07/Raza.Core">5</InstanceId>
    <CountryCode>sample string 2</CountryCode>
    <ISOCode>sample string 3</ISOCode>
    <Name>sample string 1</Name>
    <Type>sample string 4</Type>
  </Country>
</ArrayOfCountry>