---
sourceDocument: Zurich API Reference
sourceDocumentLink: https://www.servicenow.com/docs/r/zurich/api-reference

 Release :

    - zurich

ft:locale :

    - en-US

ft:publication_title :

    - Zurich API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# GlideDate - Global

# GlideDate - Global {#ariaid-title1}

* Release version: Zurich
* 
* Updated July 31, 2025
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 9 minutes to read

The GlideDate class provides methods for performing operations on
GlideDate objects, such as instantiating GlideDate objects or working with GlideDate
fields.

For guidance on date time input strings with a list of common format conflicts, refer to [Date and time format guidelines](https://www.servicenow.com/docs/1DG2puD64e_Jpggk_TuPZw#date-and-time-format-guidelines "You can specify a date format with a sequence of specific date and time pattern strings. A pattern string consists of one or more uppercase and lowercase letters from A to Z. Any text within quotation marks is ignored and is instead copied into the date output.").

See also [GlideDateTime - Global](https://www.servicenow.com/docs/0RsFUGrNm~~bAxNQ4aduzg#c_GlideDateTimeAPI "The GlideDateTime class provides methods for performing operations on GlideDateTime objects.").

## GlideDate - GlideDate() {#ariaid-title2}

Creates a GlideDate object with the current date time.
{#GlideDate-GlideDate__table_vy2_525_jq__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 1. Parameters]

{#GlideDate-GlideDate__table_vy2_525_jq}  

    //Today's date is April 21, 2021
    var gd = new GlideDate();
    gs.info(gd.getValue());

Output:

    2021-04-21

## GlideDate - getByFormat(String format) {#ariaid-title3}

Gets the date in the specified date format.
{#GlideDate-getByFormat_S__table_vy2_525_jq__entry__3}

| Name | Type | Description |
|-|-|-|
| format | String | Desired date format using Java [SimpleDateFormat](https://docs.oracle.com/javase/10/docs/api/java/text/SimpleDateFormat.html). For example, `"dd-MM-yyyy"` to get the day, month, and year, or `"EEEE"` to get the day of the week. |
[Table 2. Parameters]

{#GlideDate-getByFormat_S__table_vy2_525_jq} {#GlideDate-getByFormat_S__table_qpt_3f5_jq__entry__2}

| Type | Description |
|-|-|
| String | Date value for the GlideDate object in the specified format. |
[Table 3. Returns]

{#GlideDate-getByFormat_S__table_qpt_3f5_jq}  

    var gd = new GlideDate(); 
    gd.setValue('2021-04-21');
    gs.info(gd.getByFormat("dd-MM-yyyy"));

Output:

    21-04-2021

### Scoped equivalent {#GlideDate-getByFormat_S__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate - getByFormat(String format)](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateGetByFormat_String "Gets the date in the specified date format.").

## GlideDate - getDayOfMonthNoTZ() {#ariaid-title4}

Gets the day of the month stored by the GlideDate object, expressed in the UTC time
zone.
{#GlideDate-getDayOfMonthNoTZ__table_gdd_z5q_yv__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 4. Parameters]

{#GlideDate-getDayOfMonthNoTZ__table_gdd_z5q_yv} {#GlideDate-getDayOfMonthNoTZ__table_hdd_z5q_yv__entry__2}

| Type | Description |
|-|-|
| Number | The day of the month in the UTC time zone, from 1 to 31. |
[Table 5. Returns]

{#GlideDate-getDayOfMonthNoTZ__table_hdd_z5q_yv}  

    //Today's date is 2016-05-13 
    var gd =new GlideDate();
    gs.info(gd.getDayOfMonthNoTZ());

Output:

    13

### Scoped equivalent {#GlideDate-getDayOfMonthNoTZ__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate -
getMonthNoTZ()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_SGD-getMonthNoTZ "Gets the month stored by the GlideDate object, expressed in the UTC time zone.").

## GlideDate - getDisplayValue() {#ariaid-title5}

Gets the date and time field value in the UTC time zone.
See also: [getDisplayValueInternal()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateGetDisplayValueInternal "Gets the date in the internal format (yyyy-MM-dd) and current user's timezone.")
{#GlideDate-getDisplayValue__table_vy2_535_jq__entry__3}

| Name | Type | Description |
|-|-|-|
| none |   |   |
[Table 6. Parameters]

{#GlideDate-getDisplayValue__table_vy2_535_jq} {#GlideDate-getDisplayValue__table_qpt_3f5_jq__entry__2}

| Type | Description |
|-|-|
| String | Date value for the GlideDate object in the UTC time zone. |
[Table 7. Returns]

{#GlideDate-getDisplayValue__table_qpt_3f5_jq}  

    var gd = new GlideDate(); 
    gd.setValue('2025-04-21');
    gs.info(gd.getDisplayValue());

Output:

    2025-04-21

### Scoped equivalent {#GlideDate-getDisplayValue__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate -
getDisplayValue()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateGetDisplayValue "Gets the date and time field value in the UTC time zone.").

## GlideDate - getDisplayValueInternal() {#ariaid-title6}

Gets the date in the internal format (yyyy-MM-dd) and current user's timezone.
See also [getDisplayValue()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateGetDisplayValue "Gets the date and time field value in the UTC time zone.")
{#GlideDate-getDisplayValueInternal__table_vy2_535_jq__entry__3}

| Name | Type | Description |
|-|-|-|
| none |   |   |
[Table 8. Parameters]

{#GlideDate-getDisplayValueInternal__table_vy2_535_jq} {#GlideDate-getDisplayValueInternal__table_qpt_3f5_jq__entry__2}

| Type | Description |
|-|-|
| String | Date value for the GlideDate object in the current user's time zone. Format: yyyy-MM-dd |
[Table 9. Returns]

{#GlideDate-getDisplayValueInternal__table_qpt_3f5_jq}  

    var gd = new GlideDate(); 
    gs.info(gd.getDisplayValueInternal());

Output:

    2021-04-21

### Scoped equivalent {#GlideDate-getDisplayValueInternal__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate -
getDisplayValueInternal()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateGetDisplayValueInternal "Gets the date in the internal format (yyyy-MM-dd) and current user's timezone.").

## GlideDate - getDisplayValueLang(String style) {#ariaid-title7}

Returns the date value in the user's locale according to a specified date
style.
{#GlideDate-getDisplayValueLang_S__id_bvt_cvr_dwb__entry__3}

| Name | Type | Description |
|-|-|-|
| style | String | Date format. Valid values: * full: returns the date in the format of \<weekday, month, day, and year\> according to the user's locale (for example, Monday, October 24, 2022). * long: returns the date in the format of \<month, day, and year\> according to the user's locale (for example, October 24, 2022). * medium: similar to long but returns the date with an abbreviated month (for example, Oct 24, 2022). * short: returns the date in the format of MM/DD/YY or DD/MM/YY according to the user's locale (for example, 10/24/2022 or 24/10/2022). If any other value is passed the API defaults to `medium`. Accepted values are not case sensitive. |
[Table 10. Parameters]

{#GlideDate-getDisplayValueLang_S__id_bvt_cvr_dwb} {#GlideDate-getDisplayValueLang_S__id_a5b_gvr_dwb__entry__2}

| Type | Description |
|-|-|
| String | A string representation of the date in the style specified and in the appropriate format for the locale of the current user. |
[Table 11. Returns]

{#GlideDate-getDisplayValueLang_S__id_a5b_gvr_dwb}  
The following example returns the date of the user's locale in all styles.

    var gd = new GlideDate(); // This will fetch the current date


    gs.info('date: ' + gd.getDisplayValue());

    gs.info('date: ' + gd.getDisplayValueLang("full"));
    gs.info('date: ' + gd.getDisplayValueLang("long"));
    gs.info('date: ' + gd.getDisplayValueLang("medium"));
    gs.info('date: ' + gd.getDisplayValueLang("short"));

Output:

    date: 2023-01-18
    Wednesday, January 18, 2023
    date: January 18, 2023
    date: Jan 18, 2023
    date: 1/18/23

## GlideDate - getDisplayValueLang(String style, String language) {#ariaid-title8}

Returns the date value in the user's locale and language according to a specified date
style.
{#GlideDate-getDisplayValueLang_S_S__id_ox5_fwr_dwb__entry__3}

| Name | Type | Description |
|-|-|-|
| style | String | Date format. Valid values: * full: returns the date in the format of \<weekday, month, day, and year\> according to the user's locale (for example, Monday, October 24, 2022). * long: returns the date in the format of \<month, day, and year\> according to the user's locale (for example, October 24, 2022). * medium: similar to long but returns the date with an abbreviated month (for example, Oct 24, 2022). * short: returns the date in the format of MM/DD/YY or DD/MM/YY according to the user's locale (for example, 10/24/2022 or 24/10/2022). If any other value is passed the API defaults to `medium`. Accepted values are not case sensitive. |
| language | String | Returns the date according to a specified language value. Accepts language tags that conform with the BCP-47 standard. For example, `fr` for French or `en-UK` for British English. For a full list of accepted values, see [BCP 47 Language Code List](https://appmakers.dev/bcp-47-language-codes-list/). |
[Table 12. Parameters]

{#GlideDate-getDisplayValueLang_S_S__id_ox5_fwr_dwb} {#GlideDate-getDisplayValueLang_S_S__id_zty_3wr_dwb__entry__2}

| Type | Description |
|-|-|
| String | Date in the style and language specified according to the locale of the current user. |
[Table 13. Returns]

{#GlideDate-getDisplayValueLang_S_S__id_zty_3wr_dwb}  
The following example returns the date of the user's locale in various languages and
styles.

    var gd = new GlideDate(); // This will fetch the current date


    gs.info('date: ' + gd.getDisplayValue());

    gs.info('date: ' + gd.getDisplayValueLang("full", "fr"));
    gs.info('date: ' + gd.getDisplayValueLang("long", "en-GB"));
    gs.info('date: ' + gd.getDisplayValueLang("medium", "de"));
    gs.info('date: ' + gd.getDisplayValueLang("short", "es-MX"));

Output:


    date: 2023-01-18
    date: mercredi 18 janvier 2023
    date: 18 January 2023
    date: 18.01.2023
    date: 18/01/23

## GlideDate - getMonthNoTZ() {#ariaid-title9}

Gets the month stored by the GlideDate object, expressed in the UTC time zone.
{#GlideDate-getMonthNoTZ__table_az1_3wq_yv__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 14. Parameters]

{#GlideDate-getMonthNoTZ__table_az1_3wq_yv} {#GlideDate-getMonthNoTZ__table_bz1_3wq_yv__entry__2}

| Type | Description |
|-|-|
| Number | The numerical value of the month from 1 to 12. |
[Table 15. Returns]

{#GlideDate-getMonthNoTZ__table_bz1_3wq_yv}  

    //Today's date is 2016-05-13
    var gd =new GlideDate();
    gs.info(gd.getMonthNoTZ());

Output:

    5

### Scoped equivalent {#GlideDate-getMonthNoTZ__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate -
getMonthNoTZ()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_SGD-getMonthNoTZ "Gets the month stored by the GlideDate object, expressed in the UTC time zone.").

## GlideDate - getYearNoTZ() {#ariaid-title10}

Gets the year stored by the GlideDate object, expressed in the UTC time zone.
{#GlideDate-getYearNoTZ__table_pnp_hxq_yv__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 16. Parameters]

{#GlideDate-getYearNoTZ__table_pnp_hxq_yv} {#GlideDate-getYearNoTZ__table_qnp_hxq_yv__entry__2}

| Type | Description |
|-|-|
| Number | The numerical value of the year. |
[Table 17. Returns]

{#GlideDate-getYearNoTZ__table_qnp_hxq_yv}  

    //Today's date is 2016-05-13
    var gd =new GlideDate();
    gs.info(gd.getYearNoTZ());

Output:

    2016

### Scoped equivalent {#GlideDate-getYearNoTZ__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate -
getYearNoTZ()](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_SGD-getYearNoTZ "Gets the year stored by the GlideDate object, expressed in the UTC time zone.").

## GlideDate - parseDate(String date, String language, String country) {#ariaid-title11}

Parses a date to the locale associated with the passed language and country codes.
Note:  
This method fails and throws an exception if the regional date format isn't followed.
{#GlideDate-parseDate_S_S_S__table_ynx_dsb_fbc__entry__3}

| Name | Type | Description |
|-|-|-|
| date | String | Date formatted in regional syntax. Formats: * Alphanumeric dates: You can specify months as either three characters such as Jan, Feb, or Mar, or fully spell out the month's name. Years must be four digits and days must be two digits. For example: `"31 Jan 2020"` or `"31 January 2020"` * Numeric dates: Days and months must be two digits. Four digits are highly preferred for years, though the method does support a two-digit year with less accuracy and a higher chance of parse failure. You must also use the regional date separator. These separators affect the parse based on the passed in language and country values. For example: "12/31/2020" for US locale and "31.12.20" for Estonia locale. |
| language | String | ISO-639 two-character language code. |
| country | String | ISO-3166 two-character country code. |
[Table 18. Parameters]

{#GlideDate-parseDate_S_S_S__table_ynx_dsb_fbc} {#GlideDate-parseDate_S_S_S__table_znx_dsb_fbc__entry__2}

| Type | Description |
|-|-|
| Object | Parsed GlideDate object that you can use in calculations or insert in a record. This method throws an exception if the date failed to parse. An exception happens when the date format doesn't match the specified locale format (passed language and country parameters). |
[Table 19. Returns]

{#GlideDate-parseDate_S_S_S__table_znx_dsb_fbc}  
The following code example parses a date and adds four weeks to that date.

    var date = GlideDate.parseDate("31 Dec 2020", "en", "GB");
    date.addWeeksLocalTime(4);
    gs.info("Project is due 4 weeks after start date, on " + date.getDisplayValue());

Output:

    Project is due 4 weeks after start date, on 2021-01-28

## GlideDate - setDisplayValue(String asDisplayed) {#ariaid-title12}

Sets a date value using the current user's display format and time zone.
{#GlideDate-setDisplayValue_S__table_vy2_525_jq__entry__3}

| Name | Type | Description |
|-|-|-|
| asDisplayed | String | Date in the current user's display format and time zone. Format: Must be formatted using the current user's preferred display format, such as yyyy-MM-dd. |
[Table 20. Parameters]

{#GlideDate-setDisplayValue_S__table_vy2_525_jq} {#GlideDate-setDisplayValue_S__table_qpt_3f5_jq1__entry__2}

| Type | Description |
|-|-|
| None |   |
[Table 21. Returns]

{#GlideDate-setDisplayValue_S__table_qpt_3f5_jq1}  

    var gd = new GlideDate();
    gd.setDisplayValue("2011-01-01");
    gs.info(gd.getValue());

Output:

    2011-01-01

### Scoped equivalent {#GlideDate-setDisplayValue_S__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate -
setDisplayValue(String asDisplayed)](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateSetDisplayValue_String "Sets a date value using the current user's display format and time zone.").

## GlideDate - setDisplayValueLang(String date, String style) {#ariaid-title13}

Sets a date using a specified style and format according to the current user's
locale.
{#GlideDate-setDisplayValueLang_S_S__id_hyd_vwr_dwb__entry__3}

| Name | Type | Description |
|-|-|-|
| date | String | Date value for the GlideDate object in the current user's time zone. Valid values are any date and time output from the getDisplayValueLang() function. For instance, using output from the getDisplayValueLang(String style, String language) example earlier in this topic, October 25, 2022 or 25.10.2022 are accepted values. |
| style | String | Date format. Valid values: * full: returns the date in the format of \<weekday, month, day, and year\> according to the user's locale (for example, Monday, October 24, 2022). * long: returns the date in the format of \<month, day, and year\> according to the user's locale (for example, October 24, 2022). * medium: similar to long but returns the date with an abbreviated month (for example, Oct 24, 2022). * short: returns the date in the format of MM/DD/YY or DD/MM/YY according to the user's locale (for example, 10/24/2022 or 24/10/2022). If any other value is passed the API defaults to `medium`. Accepted values are not case sensitive. |
[Table 22. Parameters]

{#GlideDate-setDisplayValueLang_S_S__id_hyd_vwr_dwb} {#GlideDate-setDisplayValueLang_S_S__id_bmq_vwr_dwb__entry__2}

| Type | Description |
|-|-|
| void |   |
[Table 23. Returns]

{#GlideDate-setDisplayValueLang_S_S__id_bmq_vwr_dwb}  
The following example shows how you can set the current date of the user's locale to 'full'
style using setDisplayValueLang().

    glideDate.setDisplayValueLang("2/3/2023", "short");


    gs.info('date: ' + glideDate.getDisplayValue());
    gs.info('date: ' + glideDate.getDisplayValueLang("full"));

Output:

    date: 2023-02-03
    date: Friday, February 3, 2023

## GlideDate - setDisplayValueLang(String date, String style, String language) {#ariaid-title14}

Sets a date using a specified style, language, and format according to the current
user's locale.
{#GlideDate-setDisplayValueLang_S_S_S__id_udx_nxr_dwb__entry__3}

| Name | Type | Description |
|-|-|-|
| date | String | Date value for the GlideDate object in the current user's time zone. Valid values are any date and time output from the getDisplayValueLang() function. For instance, using output from the getDisplayValueLang(String style, String language) example earlier in this topic, October 25, 2022 or 25.10.2022 are accepted values. |
| style | String | Date format. Valid values: * full: returns the date in the format of \<weekday, month, day, and year\> according to the user's locale (for example, Monday, October 24, 2022). * long: returns the date in the format of \<month, day, and year\> according to the user's locale (for example, October 24, 2022). * medium: similar to long but returns the date with an abbreviated month (for example, Oct 24, 2022). * short: returns the date in the format of MM/DD/YY or DD/MM/YY according to the user's locale (for example, 10/24/2022 or 24/10/2022). If any other value is passed the API defaults to `medium`. Accepted values are not case sensitive. |
| language | String | Sets the language using a language tag that conforms with the BCP-47 standard. For example, `fr` for French or `en-UK` for British English. For a full list of accepted values, see [BCP 47 Language Code List](https://appmakers.dev/bcp-47-language-codes-list/). |
[Table 24. Parameters]

{#GlideDate-setDisplayValueLang_S_S_S__id_udx_nxr_dwb} {#GlideDate-setDisplayValueLang_S_S_S__id_nbl_4xr_dwb__entry__2}

| Type | Description |
|-|-|
| Void |   |
[Table 25. Returns]

{#GlideDate-setDisplayValueLang_S_S_S__id_nbl_4xr_dwb}  
The following example returns the date and time in short and full styles for English and
French.

    var glideDateFR = new GlideDate(); 

    glideDateUS.setDisplayValueLang("2/3/202", "short", "en-US" );
    glideDateFR.setDisplayValueLang("2/3/2023", "short", "fr-FR" );

    gs.info('en-US date: ' + glideDateUS.getDisplayValue());
    gs.info('en-US date: ' + glideDateUS.getDisplayValueLang("full"));

    gs.info('fr-FR date: ' + glideDateFR.getDisplayValue());
    gs.info('fr-FR date: ' + glideDateFR.getDisplayValueLang("full"));

Output:

    en-US date: 2023-02-03
    en-US date: Friday, February 3, 2023
    fr-FR date: 2023-03-02
    fr-FR date: Thursday, March 2, 2023

## GlideDate- setValue(String o) {#ariaid-title15}

Sets the date of the current GlideDate object in internal format (yyyy-MM-dd) and the
system time zone (UTC by default).
If invalid data is provided to this method, the previous value is kept.
{#GlideDate-setValue_S__table_vy2_525_jq__entry__3}

| Name | Type | Description |
|-|-|-|
| o | String | Date and time to set in the current GlideDate object. Format: yyyy-MM-dd |
[Table 26. Parameters]

{#GlideDate-setValue_S__table_vy2_525_jq} {#GlideDate-setValue_S__table_qpt_3f5_jq1__entry__2}

| Type | Description |
|-|-|
| None |   |
[Table 27. Returns]

{#GlideDate-setValue_S__table_qpt_3f5_jq1}  

    var gd = new GlideDate(); 
    gd.setValue('2015-01-01');
    gs.info(gd.getValue());

Output:

    2015-01-01

### Scoped equivalent {#GlideDate-setValue_S__section_w2m_sxr_mcb}

To use this method in a scoped application, use the corresponding scoped method: [Scoped GlideDate - setValue(String
o)](https://www.servicenow.com/docs/Wn1IkfgXsee2gtBqDJLACw#r_ScopedGlideDateSetValue_String "Sets the date of the current GlideDate object in internal format (yyyy-MM-dd) and the system time zone (UTC by default).").

