Skip to main content

Occupants

The Occupants action provides information on people which are or were registered in the requested address. The response includes the data sources and years when the person was known to be at that address.

This action can be used to retrieve information about an address occupants by providing an 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 Occupants action to retrieve information about the occupants of the requested address.

Service Request​

To request for the person Addresses, add OCCUPANTS action to the request body entity AddressesDetailsActionsRequest:

{
"actions": [
{
"action": "OCCUPANTS"
}
],
"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 Occupants action returns a JSON object containing information about the occupants of the address included in AddressesDetailsActionsResponse's occupants 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​