GET api/v1/countries/overview
Gets the country overviews.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CountryOverview| Name | Description | Type | Additional 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": "4e177fea-eb44-4a13-9b62-2424146b340d",
    "CountryIdIso": 2,
    "CountryName": "sample string 3",
    "CountryCode": "sample string 4",
    "Id": "4e177fea-eb44-4a13-9b62-2424146b340d",
    "CanUpdateRecord": true,
    "CanDeleteRecord": true
  },
  {
    "CountryId": "4e177fea-eb44-4a13-9b62-2424146b340d",
    "CountryIdIso": 2,
    "CountryName": "sample string 3",
    "CountryCode": "sample string 4",
    "Id": "4e177fea-eb44-4a13-9b62-2424146b340d",
    "CanUpdateRecord": true,
    "CanDeleteRecord": true
  }
]
        text/html
            Sample:
        
[{"CountryId":"4e177fea-eb44-4a13-9b62-2424146b340d","CountryIdIso":2,"CountryName":"sample string 3","CountryCode":"sample string 4","Id":"4e177fea-eb44-4a13-9b62-2424146b340d","CanUpdateRecord":true,"CanDeleteRecord":true},{"CountryId":"4e177fea-eb44-4a13-9b62-2424146b340d","CountryIdIso":2,"CountryName":"sample string 3","CountryCode":"sample string 4","Id":"4e177fea-eb44-4a13-9b62-2424146b340d","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">4e177fea-eb44-4a13-9b62-2424146b340d</Id>
    <CountryCode>sample string 4</CountryCode>
    <CountryId>4e177fea-eb44-4a13-9b62-2424146b340d</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">4e177fea-eb44-4a13-9b62-2424146b340d</Id>
    <CountryCode>sample string 4</CountryCode>
    <CountryId>4e177fea-eb44-4a13-9b62-2424146b340d</CountryId>
    <CountryIdIso>2</CountryIdIso>
    <CountryName>sample string 3</CountryName>
  </CountryOverview>
</ArrayOfCountryOverview>