GET Countries?page={page}&pageSize={pageSize}

Gets all the countries, represented as CountryDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page

The page (optional, 1 by default).

integer

Default value is 1

pageSize

The page size (optional, 50 by default).

integer

Default value is 50

Body Parameters

None.

Response Information

Resource Description

A collection of countries.

Collection of CountryDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

IdCurrencyCode

globally unique identifier

None.

CurrencyCode

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "f17b2db0-0ac6-48b7-ba19-7a8f975aea32",
    "Name": "sample string 2",
    "IdCurrencyCode": "a837f535-7c2d-4d04-b676-95dc5db5dfd8",
    "CurrencyCode": "sample string 4"
  },
  {
    "Id": "f17b2db0-0ac6-48b7-ba19-7a8f975aea32",
    "Name": "sample string 2",
    "IdCurrencyCode": "a837f535-7c2d-4d04-b676-95dc5db5dfd8",
    "CurrencyCode": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCountryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
  <CountryDto>
    <CurrencyCode>sample string 4</CurrencyCode>
    <Id>f17b2db0-0ac6-48b7-ba19-7a8f975aea32</Id>
    <IdCurrencyCode>a837f535-7c2d-4d04-b676-95dc5db5dfd8</IdCurrencyCode>
    <Name>sample string 2</Name>
  </CountryDto>
  <CountryDto>
    <CurrencyCode>sample string 4</CurrencyCode>
    <Id>f17b2db0-0ac6-48b7-ba19-7a8f975aea32</Id>
    <IdCurrencyCode>a837f535-7c2d-4d04-b676-95dc5db5dfd8</IdCurrencyCode>
    <Name>sample string 2</Name>
  </CountryDto>
</ArrayOfCountryDto>