---
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


---

# get기록

# get기록 {#ariaid-title1}

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

예제 값으로 대상 테이블을 쿼리하고 일치하는 모든 기록과 해당 필드를 반환합니다.

## 입력 필드

대상 테이블의 모든 필드 값입니다.

## 출력 필드

getRecordResponse 요소에는 쿼리와 일치하는 기록의 필드 값을 나타내는 요소를 캡슐화하는 하나 이상의 getRecordsResult 요소가 포함될 수 있습니다.

## 샘플 SOAP 메시지

샘플 SOAP 요청  

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:inc="http://www.service-now.com/incident">
       <soapenv:Header/>
       <soapenv:Body>
          <inc:getRecords>
             <number>INC0000002</number>
          </inc:getRecords>
       </soapenv:Body>
    </soapenv:Envelope>

인코딩된 쿼리를 사용하여 인시던트 번호가 INC0000001되거나 INC0000002 위치를 필터링하는 샘플 SOAP 요청  

    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:inc="http://www.service-now.com/incident">
       <soapenv:Header/>
       <soapenv:Body>
          <inc:getRecords>
             <__encoded_query>number=INC0000001^ORnumber=INC0000002</__encoded_query>
          </inc:getRecords>
       </soapenv:Body>
    </soapenv:Envelope>

1개의 기록이 포함된 샘플 SOAP 응답  

    <soapenv:Envelope xmlns:inc="http://www.service-now.com/incident" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
       <soapenv:Header/>
       <soapenv:Body>
          <getRecordsResponse>
             <getRecordsResult>
                <caller_id>5137153cc611227c000bbd1bd8cd2007</caller_id>
                <caller_id.email>david.loo@service-now.com</caller_id.email>
                <closed_at/>
                <number>INC0000002</number>
                <opened_at>2009-12-14 23:07:12</opened_at>
                <short_description>Can't get to network file shares</short_description>
             </getRecordsResult>
          </getRecordsResponse>
       </soapenv:Body>
    </soapenv:Envelope>

1개 이상의 기록이 포함된 샘플 SOAP 응답  

    <soapenv:Envelope xmlns:inc="http://www.service-now.com/incident" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
       <soapenv:Header/>
       <soapenv:Body>
          <getRecordsResponse>
             <getRecordsResult>
                <caller_id>5137153cc611227c000bbd1bd8cd2006</caller_id>
                <caller_id.email>rick.berzle@yourcompany.com</caller_id.email>
                <closed_at>2009-12-17 22:55:16</closed_at>
                <number>INC0000009</number>
                <opened_at>2009-12-16 22:50:23</opened_at>
                <short_description>Reset my password</short_description>
             </getRecordsResult>
             <getRecordsResult>
                <caller_id>5137153cc611227c000bbd1bd8cd2005</caller_id>
                <caller_id.email>fred.luddy@yourcompany.com</caller_id.email>
                <closed_at>2009-12-15 22:54:55</closed_at>
                <number>INC0000010</number>
                <opened_at>2009-12-10 22:53:02</opened_at>
                <short_description>Need Oracle 10GR2 installed</short_description>
             </getRecordsResult>
          </getRecordsResponse>
       </soapenv:Body>
    </soapenv:Envelope>

## 언어별 샘플 메시지

언어별 getRecords 샘플은 다음 주제를 참조하십시오.

[Perl SOAP::Lite](https://servicenow-prod.fluidtopics.net/AyW0pYjycODc0RdVe7P03A#c_PerlWebServicesClientExamples__getRecords)

[Java Apache 축2](https://servicenow-prod.fluidtopics.net/QOB8ftpBxMHUiYvGjhtCkQ "getKeys 함수를 호출하여 범주가 하드웨어인 모든 인시던트를 쿼리하는 Axis 클라이언트 프로그램의 예입니다.")

[Python](https://servicenow-prod.fluidtopics.net/cO6~D_nlkbDFqMCytnJE~A#c_PythonWebServicesClientExamples__getRecords)

