Loading
Insurance
Table of Contents
Select Filters

          No results
          No results
          Here are some search tips

          Check the spelling of your keywords.
          Use more general search terms.
          Select fewer filters to broaden your search.

          Search all of Salesforce Help
          InsClaimItemService:getInvolvedItems

          InsClaimItemService:getInvolvedItems

          Use this service to get a list of involved items (property) and/or involved people (parties) for a specific claim.

          Note
          Note

          The involved items and involved people this service returns are also called claimants.

          Class: InsClaimItemService

          Method: getInvolvedItems

          How It Works

          1. Takes the claimId and gets the claim record.

          2. Returns a list of claimants, including both involved property and involved people, associated with the claim.

          3. If includeCoverages is set to true, the service includes a list of all coverages associated with each claimant.

            For third-party claimants (property or people who are not covered by the in-force insurance policy), the service returns coverages that are associated with the peril product.

          Remote Options

          Option

          Description

          claimId

          Required.

          The Id of the claim this service will get insured items for.

          includeCoverages

          Optional.

          True or false.

          If set to true, includes coverages for each involved injury and involved property in the list this service returns.

          If set to false, the output JSON does not include the list of options attributes.

          Input JSON

          This service does not use an input JSON.

          Output JSON

          The service returns a JSON-formatted list of claimants (insured items and insured people).

          claimants = [
              { 
                  "Id": "01t000000000000000", 
                  "Name": "Bodily Injury", 
                  "Description": "",
                  "options": [
                      { ... },
                      { ... },
                      { ... }
                  ]
              }, 
              { ... }
          ];

          Examples

          The service is typically used in claims flows to get a list of claimants (involved items and involved people).

           
          Loading
          Salesforce Help | Article