GET api/v1/countries/overview

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CountryOverview
NameDescriptionTypeAdditional information
CountryId

globally unique identifier

None.

CountryIdIso

integer

None.

CountryName

string

None.

CountryCode

string

None.

Id

globally unique identifier

None.

CanUpdateRecord

boolean

None.

CanDeleteRecord

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CountryId": "9f6b1b38-c794-45e7-89b0-0b71c5c41e50",
    "CountryIdIso": 2,
    "CountryName": "sample string 3",
    "CountryCode": "sample string 4",
    "Id": "9f6b1b38-c794-45e7-89b0-0b71c5c41e50",
    "CanUpdateRecord": true,
    "CanDeleteRecord": true
  },
  {
    "CountryId": "9f6b1b38-c794-45e7-89b0-0b71c5c41e50",
    "CountryIdIso": 2,
    "CountryName": "sample string 3",
    "CountryCode": "sample string 4",
    "Id": "9f6b1b38-c794-45e7-89b0-0b71c5c41e50",
    "CanUpdateRecord": true,
    "CanDeleteRecord": true
  }
]

text/html

Sample:
[{"CountryId":"9f6b1b38-c794-45e7-89b0-0b71c5c41e50","CountryIdIso":2,"CountryName":"sample string 3","CountryCode":"sample string 4","Id":"9f6b1b38-c794-45e7-89b0-0b71c5c41e50","CanUpdateRecord":true,"CanDeleteRecord":true},{"CountryId":"9f6b1b38-c794-45e7-89b0-0b71c5c41e50","CountryIdIso":2,"CountryName":"sample string 3","CountryCode":"sample string 4","Id":"9f6b1b38-c794-45e7-89b0-0b71c5c41e50","CanUpdateRecord":true,"CanDeleteRecord":true}]

application/xml, text/xml

Sample:
<ArrayOfCountryOverview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Location">
  <CountryOverview>
    <CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord>
    <CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord>
    <Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">9f6b1b38-c794-45e7-89b0-0b71c5c41e50</Id>
    <CountryCode>sample string 4</CountryCode>
    <CountryId>9f6b1b38-c794-45e7-89b0-0b71c5c41e50</CountryId>
    <CountryIdIso>2</CountryIdIso>
    <CountryName>sample string 3</CountryName>
  </CountryOverview>
  <CountryOverview>
    <CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord>
    <CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord>
    <Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">9f6b1b38-c794-45e7-89b0-0b71c5c41e50</Id>
    <CountryCode>sample string 4</CountryCode>
    <CountryId>9f6b1b38-c794-45e7-89b0-0b71c5c41e50</CountryId>
    <CountryIdIso>2</CountryIdIso>
    <CountryName>sample string 3</CountryName>
  </CountryOverview>
</ArrayOfCountryOverview>