---
sourceDocument: Australia Manufacturing
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/manufacturing

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia Manufacturing

ft:clusterId :

    - mftg

bundleId :

    - mftg

workflow :

    - Customer and Industry


---

# Warranty Claims SOAP API

# Warranty Claims SOAP API {#ariaid-title1}

* Release version: Australia
* 
* Updated August 11, 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 9 minutes to read

The Warranty Claims SOAP API handles incoming repair orders from dealer systems and converts them into warranty claims within the Original Equipment Manufacturer (OEM)'s platform.
This API follows [SOAP 1.1 conventions](https://www.w3.org/TR/2000/NOTE-SOAP-20000508/) and uses [Standards for Technology in Automotive Retail (STAR) XML schemas](https://https://schemas.liquid-technologies.com/star/5.3.4/repairorder_xsd.html/star/5.3.4/?page=processsaleslead_xsd.html) for interoperability across automotive service systems.  
This API enables the exchange of warranty and repair claim information between ServiceNow Manufacturing Commercial Operations (MCO) and a Dealer Management System (DMS). Specifically, it allows users to:

* Create and validate warranty claims in the DMS directly from ServiceNow MCO.
* Query the status of submitted claims, including adjudication and approval outcomes, and retrieve those results back into ServiceNow.
* Manage repair claim data across three core MCO tables:
  * Repair Claim Case \[sn_repair_claim_mgmt_case\]
  * Repair Claim Case Line \[sn_repair_claim_mgmt_case_line\]
  * Repair Claim Case Line Charge \[sn_repair_claim_mgmt_case_line_charge\]
  {#warranty-claims-SOAP-API__ul_xhh_x55_k3c}
* Support STAR XML message formats through configuration‑driven adapters, enabling standards‑based integrations without custom code.
{#warranty-claims-SOAP-API__ul_wzk_xrb_j3c}

This documentation is intended for developers, system integrators, and partners implementing a standards-based SOAP integration.

## Standards and conventions {#warranty-claims-SOAP-API__section_wjt_wrb_j3c}

The API adheres to widely used, publicly documented standards.
{#warranty-claims-SOAP-API__table_xjt_wrb_j3c__entry__2}

| Item | Standard |
|-|-|
| SOAP version | SOAP 1.1 (default); 1.2 supported for select partners |
| WSDL | WSDL 1.1 |
| XML schema | XSD 1.0 (STAR XML) |
| STAR schema version | 5.13.4 |
| Character encoding | UTF-8 |
| Message format | `text/xml` |
| Protocols | HTTPS over TLS 1.2+; optional Mutual TLS for STAR partners |
[ ]

{#warranty-claims-SOAP-API__table_xjt_wrb_j3c}

## Access and authentication {#warranty-claims-SOAP-API__section_dxb_ttb_j3c}

* Basic Auth (username/password)
* Configurable per endpoint for every DMS
{#warranty-claims-SOAP-API__ul_vtq_5tb_j3c}

## Granular roles and entities {#warranty-claims-SOAP-API__section_zfv_jhz_m3c}

This SOAP API requires granular roles to access certain MCO features and responsibilities, provide CRU permissions without custom ACLs, and map directly to supported entities. See [Granular roles and entities](https://servicenow-prod.fluidtopics.net/HCdvAchuje5M~OkPujOOlA "Module-level granular roles have been added to facilitate defining and configuring the responsibility framework. These roles enable tasks to be performed without creating custom access control lists (ACLs) on the target table when a responsibility ACL exists. This update aims to provide a more direct and declarative migration process.") for information about supported granular roles.

## Endpoint details {#warranty-claims-SOAP-API__section_yjt_wrb_j3c}

The Warranty Claims SOAP API is exposed as a scripted SOAP Web service in ServiceNow MCO.

    https://<instance_name>.service-now.com/sn_mco_integ_RepairClaimSOAPHandler.do?SOAP

WSDL:

    https://<instance_name>.service-now.com/sn_mco_integ_RepairClaimSOAPHandler.do?WSDL

The instance name is fixed per OEM environment (sandbox, test, production).
{#warranty-claims-SOAP-API__table_ljq_ynm_m3c__entry__2}

| URL part | Description |
|-|-|
| `<instance_name>` | The ServiceNow instance hosting MCO (OEM‑specific, fixed per OEM). |
| `sn_mco_integ_` | MCO integration namespace. |
| `RepairClaimSOAPHandler.do` | Scripted SOAP Web service entry point. |
| `?SOAP` | SOAP invocation. |
| `?WSDL` | WSDL contract for client generation. |
[ ]

{#warranty-claims-SOAP-API__table_ljq_ynm_m3c}

## API operation {#warranty-claims-SOAP-API__section_rr1_jsb_j3c}

Operation Name: `ProcessRepairOrder`

Processes a repair order payload. The operation performs either a create or update action depending on whether a matching business identifier already exists.  
This operation:

* Validates the request against the STAR schema.
* Validates that values in XML are valid in MCO.
* Determines whether the repair claim (document ID) already exists.
* Creates a new record if no match is found.
* Updates an existing record if a match is found.
* Returns a processing status and reference identifier.
{#warranty-claims-SOAP-API__ul_ibk_psb_j3c}

## Request structure {#warranty-claims-SOAP-API__section_dkt_wrb_j3c}

The request body contains a STAR-conforming `ProcessRepairOrder` message wrapped in a SOAP envelope. Key logical elements include:

* Application metadata (sender, creation time, destination).
* Process verb indicating the requested action.
* Repair order header information.
* Vehicle details.
* Job, labor, parts, and pricing details.
* Warranty claim information.
{#warranty-claims-SOAP-API__ul_nrm_tsb_j3c}

All elements must conform to the STAR XML schema version indicated in the payload.

## Request parameters {#warranty-claims-SOAP-API__section_ppj_wsb_j3c}

{#warranty-claims-SOAP-API__section_ppj_wsb_j3c__entry__3}

| Name | Label | Description |
|-|-|-|
| Activity status | activity_status | Required. Indicates the current life-cycle status of the repair claim case line and drives playbook execution. Table: Repair Claim Case Line \[sn_repair_claim_mgmt_case_line\] Valid values: * Claim details completed \[claim_details_completed\] * Claim jobs completed \[claim_jobs_completed\] * Claim under review completed \[claim_under_review_completed\] * Claim job edit completed \[claim_job_edit_completed\] * Claim summary completed \[claim_summary_completed\] * Close case completed \[close_case_completed\] Data type: Choice (string) |
| Actual end | actual_end | Optional. Date and time when the repair activity was completed. Format: YYYY-MM-DDThh:mm:ss Data type: DateTime (string) |
| Actual start | actual_start | Optional. Date and time when the repair activity started. Format: YYYY-MM-DDThh:mm:ss Data type: DateTime (string) |
| Asset | asset | Required. Serial number or asset tag of the claim. Table: Asset \[alm_asset\] Data type: Reference (string) |
| Causal part | product_model | Required. Model number of the part identified as the root cause of the issue. Table: Product model \[cmdb_model\] Data type: Reference (string) |
| Claimed amount | claimed_amount | Optional. Claimed cost amount for this specific repair claim case line. Data type: Currency (string) |
| Consumer | consumer | Optional. Consumer or vehicle owner. If consumer ID is unavailable, phone number or email may be provided. Table: Consumer \[csm_consumer\] Data type: Reference (string) |
| Correlation ID | correlation_id | Optional. External correlation identifier used to link this request with upstream or downstream systems. Data type: String |
| Dealer | requesting_service_organization | Required. Reference to the service organization (dealer) submitting the request. Internally resolves to a Service Organization \[sn_customer_service_organization\] record, matched by Number. Data type: Reference (string) |
| Deductible amount | deductible_amount | Optional. Deductible amount applicable to the repair claim. Data type: Currency (string) |
| External Repair order number | external_ro_number | Required. Repair order number from the external dealer or service system. Data type: String |
| Fault code | fault_code | Optional. Fault or diagnostic code associated with the reported issue. Data type: String |
| Install base | install_base | Optional. Identifies the product or asset being serviced and is resolved by matching the provided value to an existing Install Base Item in ServiceNow. Table: Install base \[sn_install_base_item\] Valid values: * asset number * serial number * name {#warranty-claims-SOAP-API__ul_i2m_l1s_m3c} Data type: Reference (string) |
| Part in warranty | in_warranty | Required. Flag that indicates whether the affected part is under warranty. Valid values: * `true`: Affected part is under warranty. * `false`: Affected part isn't under warranty. Data type: Boolean |
| Vehicle in warranty | vehicle_in_warranty | Required. Flag that indicates whether the vehicle is under warranty. Valid values: * `true`: Vehicle is under warranty. * `false`: Vehicle isn't under warranty. Data type: Boolean |
| Issue Description | short_description | Required. Brief summary of the issue. Data type: String |
| Parent task | parent_task | Required. Identifier of an existing parent repair claim case or parent task associated with the request. Table: Task \[task\] Data type: Reference (string) |
| Pre-auth case line | pre_auth_case_line | Optional. Corresponding pre‑authorization repair request, if applicable. Table: Pre‑Auth Repair Request Job \[sn_pre_auth_repair_request_job\], Field: Number Data type: Reference (string) |
| Product Usage | product_usage | Required. Usage reading of the vehicle at time of repair (for example, kilometers or miles driven). Data type: Number (decimal) |
| Quantity | quantity | Required. Number of affected or replaced parts. Data type: Number (decimal) |
| Repair action | repair_action | Required. Action performed to resolve the issue. Valid values: * Repair \[REPAIR\] * Replacement \[REPLACEMENT\] * Software update \[SOFTWARE_UPDATE\] Data type: Choice (string) |
| Repair Claim case | parent_case | Required. Repair claim case associated with this case line. Table: Customer case \[sn_customerservice_case\] |
| Repair Details | details | Required. Detailed description of the issue, diagnostics, and repair performed. Data type: Translated HTML |
| Replacement part | replacement_part | Conditional. If repair_action = `replacement`, specifies the name or model number of the replaced part. Table: Product model \[cmdb_model\]/Name/Model Number Data type: Reference (string) |
| Reported date | reported_date | Required. Date and time the vehicle arrived at the dealer or service center. Format: YYYY-MM-DDThh:mm:ss Data type: DateTime |
| Source | source | Optional. Originating system or channel that submitted the repair claim request. Data type: String |
| Submitted | submitted_at | Required. Date and time the claim was submitted. Format: YYYY-MM-DDThh:mm:ss Data type: DateTime |
| Total claimed amount | total_claimed_amount | Required. Total claimed amount for the entire repair claim case. Data type: Currency (string) |
| Type | type | Required. Type of claim being submitted. Valid values: * Warranty \[Warranty\] * Goodwill \[Goodwill\] * Service contract \[Servicecontract\] Data type: Choice (string) |
| Unit of measure | unit_of_measure | Required. Unit of measurement for the product usage. For example, kms or miles. Table: Unit of Measure \[sn_prd_pm_uom\] Data type: Reference (string) |
| Work notes | work_notes | Optional. Internal notes or comments related to claim processing. Data type: String |
[Table 1. Inbound request parameters]

## Example SOAP request {#warranty-claims-SOAP-API__section_wsj_xsb_j3c}

Note:  
Namespaces used in examples follow standard SOAP and STAR conventions.

    <?xml version="1.0" encoding="UTF-8"?>
    <soap:Envelope
        xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:oagis="http://www.openapplications.org/oagis/9"
        xmlns:star="http://www.starstandard.org/STAR/5"
        xmlns:tran="http://www.starstandards.org/webservices/2009/transport"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

        <soap:Header>
            <!-- Optional header -->
            <tran:payloadManifest>
                <tran:manifest
                    contentID="A0"
                    element="ProcessRepairOrder"
                    namespaceURI="http://www.starstandard.org/STAR/5"
                    version="5.13.4.0.0" />
            </tran:payloadManifest>
        </soap:Header>

        <soap:Body>
            <ProcessRepairOrder xmlns="http://www.service-now.com/ProcessRepairOrder">
                <payload>
                    <![CDATA[
    <star:ProcessRepairOrder
        xmlns:star="http://www.starstandard.org/STAR/5"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        releaseID="5.13.4.0.0"
        systemEnvironmentCode="Production">

        <!-- APPLICATION AREA -->
        <star:ApplicationArea>
            <star:Sender>
                <star:CreatorNameCode>DealerManagementSystem</star:CreatorNameCode>
                <star:SenderNameCode>DEALER001</star:SenderNameCode>
                <star:URI>https://dealer-system.example.com</star:URI>
                <star:DealerNumberID>98765</star:DealerNumberID>
                <star:StoreNumber>ST-001</star:StoreNumber>
                <star:AreaNumber>REGION-01</star:AreaNumber>
                <star:DealerCountryCode>US</star:DealerCountryCode>
                <star:LanguageCode>en-US</star:LanguageCode>
                <star:SystemVersion>DMS_v6.1.0</star:SystemVersion>
            </star:Sender>

            <star:CreationDateTime>2026-01-09T14:30:45</star:CreationDateTime>
            <star:BODID>a1b2c3d4-e5f6-7890-abcd-ef1234567890</star:BODID>

            <star:Destination>
                <star:DestinationNameCode>OEM_MANUFACTURER</star:DestinationNameCode>
            </star:Destination>
        </star:ApplicationArea>

        <!-- DATA AREA -->
        <star:ProcessRepairOrderDataArea>
            <star:Process>
                <star:ActionCode>ADD</star:ActionCode>
            </star:Process>

            <star:RepairOrder>
                <star:RepairOrderHeader>
                    <star:DocumentIdentificationGroup>
                        <star:DocumentIdentification>
                            <star:DocumentID>RO-2026-987654qwert</star:DocumentID>
                        </star:DocumentIdentification>
                    </star:DocumentIdentificationGroup>

Example SOAP response (success)

    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP-ENV:Body>
        <ProcessRepairOrderResponse>
          <status>success</status>
          <message>Repair order processed successfully</message>
          <data>{"reference":"RPC0001005"}</data>
        </ProcessRepairOrderResponse>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

Example SOAP response (validation error)

    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP-ENV:Body>
        <ProcessRepairOrderResponse>
          <status>error</status>
          <message>
            VALIDATION ERRORS
            payload="[{\"field\":\"asset\",\"message\":\"Reference value not found\"}]"
          </message>
        </ProcessRepairOrderResponse>
      </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

## Error handling {#warranty-claims-SOAP-API__section_gkt_wrb_j3c}

The API uses standard SOAP and HTTP mechanisms to report errors like SOAP faults, custom business errors, and HTTP status codes.  
SOAP faults are returned when the request can't be parsed or processed at the protocol level, such as when:

* XML is malformed
* Namespace is incorrect
* Required SOAP envelope structure missing
* Authentication failure
* System-level processing error
{#warranty-claims-SOAP-API__ul_ind_btb_j3c}  
Example SOAP Fault:

    <soap:Fault>
      <faultcode>soap:Client</faultcode>
      <faultstring>Invalid SOAP message</faultstring>
    </soap:Fault>

## Custom business errors {#warranty-claims-SOAP-API__section_jkt_wrb_j3c}

Business validation errors occur after successful SOAP parsing and indicate issues with request data, such as:

* Missing or invalid references
* Duplicate repair orders
* Invalid code values
* Schema or version mismatches
{#warranty-claims-SOAP-API__ul_epv_ctb_j3c}  
These occur after successful SOAP parsing but during business validation. Errors are returned in the operation response with a status of `error` and a descriptive message. Possible errors:

* MANDATORY_FIELD_MISSING
* MIN_VALUE MAX_VALUE INVALID_REFERENCE
* UNSUPPORTED_VALIDATION_TYPE
* SOAP_ENVELOPE_EMPTY
* IN_WARRANTY_TRANSFORM_FAILED
* VALIDATION_ERRORS
* INVOKE_PROCESSOR_FAILED
* INVALID_DATE_FORMAT
* INVALID_DATE_VALUE
* INVALID_DATETIME_FORMAT
* XML_TO_JSON_FAILED
* INVALID_DATETIME_VALUE
* PAYLOAD_PARSING_FAILED
* EMPTY_PARSED_PAYLOAD
* INVALID_TRANSLATED_HTML_TYPE
* MAX_LENGTH_EXCEEDED
* MAIN_PART_MISSING
* MULTIPLE_MAIN_PARTS  
Sample error code:

    <ProcessRepairOrderResponse> 
    <status>error</status> 
    <message>VALIDATION ERRORS | payload="[{\"field\":\"asset\",\"message\":\"Reference value not found\"}]"</message> 
    </ProcessRepairOrderResponse> 
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

## HTTP Status Codes {#warranty-claims-SOAP-API__section_dnw_2tb_j3c}

{#warranty-claims-SOAP-API__table_lkt_wrb_j3c__entry__2}

| HTTP Code | Description |
|-|-|
| 200 | OK - Request processed successfully. |
| 400 | Bad Request - Invalid or malformed request. |
| 401 | Unauthorized - Authentication failure. |
| 403 | Forbidden - Access not permitted. |
| 500 | Internal Server Error - Unexpected processing failure. |
[ ]

{#warranty-claims-SOAP-API__table_lkt_wrb_j3c}

## Outbound STAR Integration {#warranty-claims-SOAP-API__outbound-star-integration}

This outbound integration sends claim adjudication and payment results from the OEM Now ServiceNow instance to a Dealer Management System (DMS) using STAR‑compliant XML messages.  
The integration is triggered by a ServiceNow Business Rule on the Repair Claim Case table (sn_repair_claim_mgmt_case) when:

* The claim source is DMS
* The claim state is one of the following:
  * Approved
  * Partially Approved
  * Rejected
  * Awaiting Information
  {#warranty-claims-SOAP-API__ul_gwq_wv5_k3c}
{#warranty-claims-SOAP-API__ul_xqq_vv5_k3c}
{#warranty-claims-SOAP-API__table_czt_dds_m3c__entry__3}

| Name | Label | Description |
|-|-|-|
| Approved amount | approved_amount | Required. Approved amount for this specific repair claim case line after adjudication. Data type: Currency |
| Correlation ID | correlation_id | Required. Unique identifier used to correlate the outbound response with the original inbound repair claim request. Data type: String |
| External repair order number | external_ro_number | Required. External repair order number associated with the Repair Claim case, as provided by the dealer system. Data type: String |
| Dealer ID | dealer_number | Required. Unique identifier of the dealer or service organization that submitted the repair claim. Data type: String |
| Review action | review_action | Required. Action taken by the claims agent during the claim review. Possible values: * Approve all \[approve_all\] * Reject all \[reject_all\] * Partially approved \[partially_approved\] * Send back \[send_back\] {#warranty-claims-SOAP-API__ul_dzt_dds_m3c} Data type: Choice (string) |
| Review comments | review_comments | Optional. Comments entered by the claims agent during the review and adjudication process. Data type: Translated Text |
| Service organization | service_organization | Required. Name of the dealer or service organization associated with the repair claim. Data type: String |
| State | state | Required. Overall adjudication state of the Repair Claim case at the time of response. Possible values: * 0 - Draft * 1 - New * 2 - Open * 5 - Pending review * 6 - Awaiting info * 8 - Approved * 9 - Partially approved * 10 - Rejected * 3 - Closed complete * 7 - Closed incomplete * 4 - Closed cancelled {#warranty-claims-SOAP-API__ul_ezt_dds_m3c} Data type: Choice (string) |
| Total approved amount | total_approved_amount | Required. Total approved amount for the entire Repair Claim case, aggregated across all case lines. Data type: Currency |
[Table 2. Outbound parameters]

{#warranty-claims-SOAP-API__table_czt_dds_m3c} {#warranty-claims-SOAP-API__outbound-star-integration__entry__33}

| Status | STAR status code | Decision indicator |
|-|-|-|
| AWAITING_INFO | 6 | R (Rejected) |
| APPROVED | 8 | A (Approved) |
| PARTIALLY_APROVED | 9 | A (Approved) |
| REJECTED | 10 | D (Denied) |
[Table 3. Claim Status Mapping]

When these conditions are met, ServiceNow generates and sends a STAR `ProcessServiceProcessingAdvisory` message to the DMS. The outbound STAR message communicates claim adjudication outcomes, not claim submission data. The message includes:

* The repair order or claim reference
* Overall claim status
* Total payable or approved amounts
* Approved amounts at the individual job or operation level
{#warranty-claims-SOAP-API__ul_ibg_ww5_k3c}

The message conforms to the STAR
`ProcessServiceProcessingAdvisory`
structure and enables the DMS to synchronize claim status and financial reconciliation data.  
Outbound sample payload:

    <ns:ProcessServiceProcessingAdvisory
        xmlns:ns="http://www.starstandard.org/STAR/5"
        xmlns:ns1="http://www.openapplications.org/oagis/9"
        languageCode="en-US"
        releaseID="1.0"
        systemEnvironmentCode="Production"
        versionID="1.0">
        <ns:ApplicationArea>
            <ns:Sender>
                <ns:CreatorNameCode>Beta Consulting Group Orlando</ns:CreatorNameCode>
                <ns:SenderNameCode>DLR0001001</ns:SenderNameCode>
            </ns:Sender>
            <ns:CreationDateTime>2026-02-26T11:54:25</ns:CreationDateTime>
            <ns:Destination />
        </ns:ApplicationArea>
        <ns:ProcessServiceProcessingAdvisoryDataArea>
            <ns:Process />
            <ns:ServiceProcessingAdvisory>
                <ns:ServiceProcessingAdvisoryHeader>
                    <ns:DocumentIdentificationGroup>
                        <ns:DocumentIdentification>
                            <ns:DocumentID>RO-2026-987654qwe1111</ns:DocumentID>
                        </ns:DocumentIdentification>
                    </ns:DocumentIdentificationGroup>
                    <ns:Payments>
                        <ns:RepairOrderReconciliation>
                            <ns:WarrantyClaimReconciliation>
                                <ns:ToBePaidAmount currencyID="INR">342744.29</ns:ToBePaidAmount>
                                <ns:ClaimStatusCode>Pending review</ns:ClaimStatusCode>
                                <ns:WarrantyNotes />
                                <ns:DispositionReason>
                                    <ns:DispositionReasonCode />
                                </ns:DispositionReason>
                            </ns:WarrantyClaimReconciliation>
                            <ns:JobReconciliation>
                                <ns:ApprovedAmount currencyID="INR">342744.29</ns:ApprovedAmount>
                                <ns:ClaimStatusCode>Pending review</ns:ClaimStatusCode>
                                <ns:OperationID>DIAG-ENG-01A1A1</ns:OperationID>
                            </ns:JobReconciliation>
                            <ns:JobReconciliation>
                                <ns:ApprovedAmount currencyID="INR">0.00</ns:ApprovedAmount>
                                <ns:ClaimStatusCode>Pending review</ns:ClaimStatusCode>
                                <ns:OperationID>DIAG-ENG-011</ns:OperationID>
                            </ns:JobReconciliation>
                        </ns:RepairOrderReconciliation>
                    </ns:Payments>
                </ns:ServiceProcessingAdvisoryHeader>
            </ns:ServiceProcessingAdvisory>
        </ns:ProcessServiceProcessingAdvisoryDataArea>
    </ns:ProcessServiceProcessingAdvisory>

## Logging and diagnostics {#warranty-claims-SOAP-API__section_mkt_wrb_j3c}

Requests and responses are logged by the service for diagnostic and troubleshooting purposes in accordance with standard ServiceNow operational practices.

## Related specifications {#warranty-claims-SOAP-API__section_nkt_wrb_j3c}

* STAR XML Specifications
* SOAP 1.1 Specification
* WSDL 1.1 Specification
{#warranty-claims-SOAP-API__ul_wnm_gtb_j3c}

Refer to the official STAR and W3C documentation for detailed schema and protocol definitions.

