GET
api/v1/get-countryTimeZoneByCountryCode?countryCode={countryCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| countryCode | string |
Required |
Response Information
Description:
Return type: Collection of CountryTimeZone
Response Formats
application/json, text/json
[
{
"TimeZoneId": 1,
"CountryName": "sample string 2",
"Alpha2Code": "sample string 3",
"CountryCode": "sample string 4",
"TimeZone": "sample string 5",
"TimeZoneCode": "sample string 6",
"IsActive": true,
"IsLogicalDeleted": true
},
{
"TimeZoneId": 1,
"CountryName": "sample string 2",
"Alpha2Code": "sample string 3",
"CountryCode": "sample string 4",
"TimeZone": "sample string 5",
"TimeZoneCode": "sample string 6",
"IsActive": true,
"IsLogicalDeleted": true
}
]
text/html
[{"TimeZoneId":1,"CountryName":"sample string 2","Alpha2Code":"sample string 3","CountryCode":"sample string 4","TimeZone":"sample string 5","TimeZoneCode":"sample string 6","IsActive":true,"IsLogicalDeleted":true},{"TimeZoneId":1,"CountryName":"sample string 2","Alpha2Code":"sample string 3","CountryCode":"sample string 4","TimeZone":"sample string 5","TimeZoneCode":"sample string 6","IsActive":true,"IsLogicalDeleted":true}]
application/xml, text/xml
<ArrayOfCountryTimeZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Master">
<CountryTimeZone>
<Alpha2Code>sample string 3</Alpha2Code>
<CountryCode>sample string 4</CountryCode>
<CountryName>sample string 2</CountryName>
<IsActive>true</IsActive>
<IsLogicalDeleted>true</IsLogicalDeleted>
<TimeZone>sample string 5</TimeZone>
<TimeZoneCode>sample string 6</TimeZoneCode>
<TimeZoneId>1</TimeZoneId>
</CountryTimeZone>
<CountryTimeZone>
<Alpha2Code>sample string 3</Alpha2Code>
<CountryCode>sample string 4</CountryCode>
<CountryName>sample string 2</CountryName>
<IsActive>true</IsActive>
<IsLogicalDeleted>true</IsLogicalDeleted>
<TimeZone>sample string 5</TimeZone>
<TimeZoneCode>sample string 6</TimeZoneCode>
<TimeZoneId>1</TimeZoneId>
</CountryTimeZone>
</ArrayOfCountryTimeZone>
