---
sourceDocument: 호주 API 참조
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/api-reference

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 API 참조

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# GlideNotification - 클라이언트

# GlideNotification - 클라이언트 {#ariaid-title1}

* 릴리스 버전: Australia
* 
* 업데이트 날짜 2026년 03월 12일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 1분

GlideNotification API는 페이지 컨텐츠 위에 메시지를 표시하는 메서드를 제공합니다.

`g_notification` 전역 객체를 사용하여 이 API에 액세스합니다. g_notification 객체를 사용할 수 있으려면 목록 V3을 활성화해야 합니다.

## GlideNotification - show(문자열 유형, 문자열 메시지, 숫자 기간) {#ariaid-title2}

페이지 컨텐츠 위에 지정된 문자열을 지정된 유형의 메시지로 표시합니다. 지속 시간 타이머가 만료되면 메시지가 제거됩니다.
주:  
범위가 지정된 애플리케이션에서 이 메서드를 사용하는 경우 연결된 네임스페이스 `NowAPI`를 지정해야 합니다. 예: `nowapi.g_notification.show("info", "기록이 업데이트되었습니다", 10000);`
{#r_GNOTV3-show_S_S__table_yyd_2bc_mv__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| 유형 | 문자열 | 표시할 메시지의 유형입니다. 유효한 값은 다음과 같습니다. * 오류 * 정보 * 경고 |
| 메시지 | 문자열 | 표시할 메시지입니다. |
| 기간 | 번호 | 옵션입니다. 메시지를 표시할 시간입니다. 단위: 밀리초 기본값: 5,000 |
[표 1. 매개변수]

{#r_GNOTV3-show_S_S__table_yyd_2bc_mv} {#r_GNOTV3-show_S_S__table_zyd_2bc_mv__entry__2}

| 유형 | 설명 |
|-|-|
| 무효 |   |
[표 2. 반환]

{#r_GNOTV3-show_S_S__table_zyd_2bc_mv}  

    // Displays an info message at the top of the screen
    g_notification.show("info", "The record has been updated", 10000);
    	 
    // Displays an error message at the top of the screen in a scoped app
    nowapi.g_notification.show("error", "You need to provide notes!");


