GET api/TimeZone/{id}
Get TimeZone by matching the provided id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TimeZone| Name | Description | Type | Additional information |
|---|---|---|---|
| TimeZoneId | integer |
None. |
|
| TimeZoneName | string |
None. |
|
| TimeZoneCode | string |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedDateTime | date |
None. |
|
| LastUpdatedDateTime | date |
None. |
|
| CreatedBy | integer |
None. |
|
| LastModifiedBy | integer |
None. |
|
| IsDeleted | boolean |
None. |
|
| IsDaylightSavings | boolean |
None. |
|
| offset | integer |
None. |
|
| TimeZoneAbbr | string |
None. |
|
| TimeZoneLoc | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"TimeZoneId": 1,
"TimeZoneName": "sample string 2",
"TimeZoneCode": "sample string 3",
"IsActive": true,
"CreatedDateTime": "2026-02-04T12:51:32.1536097+00:00",
"LastUpdatedDateTime": "2026-02-04T12:51:32.1536097+00:00",
"CreatedBy": 1,
"LastModifiedBy": 1,
"IsDeleted": true,
"IsDaylightSavings": true,
"offset": 1,
"TimeZoneAbbr": "sample string 4",
"TimeZoneLoc": "sample string 5"
}
application/xml, text/xml
Sample:
<TimeZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1"> <CreatedBy>1</CreatedBy> <CreatedDateTime>2026-02-04T12:51:32.1536097+00:00</CreatedDateTime> <IsActive>true</IsActive> <IsDaylightSavings>true</IsDaylightSavings> <IsDeleted>true</IsDeleted> <LastModifiedBy>1</LastModifiedBy> <LastUpdatedDateTime>2026-02-04T12:51:32.1536097+00:00</LastUpdatedDateTime> <TimeZoneAbbr>sample string 4</TimeZoneAbbr> <TimeZoneCode>sample string 3</TimeZoneCode> <TimeZoneId>1</TimeZoneId> <TimeZoneLoc>sample string 5</TimeZoneLoc> <TimeZoneName>sample string 2</TimeZoneName> <offset>1</offset> </TimeZone>