Skip to main content

Summary

The Address Summary action provides basic information on an individual address and can include the full address, if it's overseas, and the address sale history.

This action can be used to retrieve information about an address by providing their address MatchId and a valid x-investigation-token.

To use this action, you first need to make a Address Match request to retrieve an InvestigationToken and a MatchId for the address you are interested in.

You can then use this address MatchId and x-investigation-token to make additional requests to the Summary action.

Service Request​

To request for a Address Summary, add SUMMARY action to the request body entity AddressesDetailsActionsRequest:

{
"actions": [
{
"action": "SUMMARY"
}
],
"matchId": "A_000000000"
}
Array of objects (AddressesDetailsAction)
matchId
string (MatchId)

Identifier of a matched person, business or address that can then be used to request more details of the match.

tags
Array of strings

Free text tags for tracking purposes.

{
  • "actions": [
    ],
  • "matchId": "P_1955F18491918",
  • "tags": [
    ]
}

A valid x-investigation-token header must be included in the request.

Service Response​

The Summary action returns a JSON object containing information about the address included in AddressesDetailsActionsResponse's summary property.

object (AddressSummary)

Address format used across the Investigate API

object (AddressOccupants)
Array of objects (ErroredResponses)
tags
Array of strings

Free text tags used for tracking purposes, they will be included in response.

object (Meta)

Metadata describing the response produced.

{
  • "summary": {
    },
  • "occupants": {
    },
  • "erroredResponses": [
    ],
  • "tags": [
    ],
  • "meta": {
    }
}
A standard example workflow is detailed in Details Actions page​