---
sourceDocument: 호주 IT Operations Management
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/it-operations-management

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 IT Operations Management

ft:clusterId :

    - itom

bundleId :

    - itom

workflow :

    - Technology


---

# CSV 파일을 사용하는 대량 모니터의 예

# CSV 파일을 사용하는 대량 모니터의 예 {#ariaid-title1}

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

JSON 객체로 래핑된 CSV 파일을 사용하여 터미널을 사용하여 대량 모니터를 생성하는 예입니다.

## 1단계: CSV 형식으로 대량 작업 제출 {#bulk-monitors-using-csv-file_0__section_vpx_2qp_m3c}

`curl -X POST "https://<인스턴스>.service-now.com/api/sn_sow_synthetics/v1/synthetics_async_bulk_create" \ -u "admin:password" \ -H "Content-Type: application/json" \ -H "Accept: application/json" \ -d @monitors.json`

## 응답 {#bulk-monitors-using-csv-file_0__section_pkv_tqp_m3c}

`{ "결과": { "job_id": "a1b2c3d4e5f6... ", "status": "pending", "total_count": 2, "message": "처리를 위해 대량 작업이 수락됨" } }`

## 2단계: 작업 상태 확인 {#bulk-monitors-using-csv-file_0__section_otg_jqp_m3c}

`curl -X GET "https://<instance>.service-now.com/api/sn_sow_synthetics/v1/synthetics_async_bulk_create/{job_id}" \ -u "admin:password" \ -H "Accept: application/json"`

## 응답 {#bulk-monitors-using-csv-file_0__section_e3f_hsx_m3c}

`{ "결과": { "job_id": "a1b2c3d4e5f6... ", "status": "completed", "total_count": 2, "success_count": 2, "error_count": 0, "processed_count": 2 } }`

