---
sourceDocument: Australia IT Operations Management
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/de-DE/it-operations-management

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia IT Operations Management

ft:clusterId :

    - itom

bundleId :

    - itom

workflow :

    - Technology


---

# Example of bulk monitors using CSV file

# Example of bulk monitors using CSV file {#ariaid-title1}

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

This is an example of using a CSV file wrapped in a JSON object to create bulk monitors using terminal.

## Step 1: Submit bulk job in CSV format {#bulk-monitors-using-csv-file_0__section_vpx_2qp_m3c}

`curl -X POST "https://<instance>.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`

## Response {#bulk-monitors-using-csv-file_0__section_pkv_tqp_m3c}

`{ "result": { "job_id": "a1b2c3d4e5f6...", "status": "pending", "total_count": 2, "message": "Bulk job accepted for processing" } }`

## Step 2: Check the job status {#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"`

## Response {#bulk-monitors-using-csv-file_0__section_e3f_hsx_m3c}

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

