Skip to main content

Addresses

The Addresses action provides information on addresses which are or were registered to the requested person. 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 a person addresses by providing their person MatchId and a valid x-investigation-token.

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

You can then use this person MatchId and x-investigation-token to make additional requests to the Addresses action to retrieve information about the addresses of the requested person.

Service Request​

To request for the person Addresses, add ADDRESSES action to the request body entity PeopleDetailsActionsRequest:

{
"actions": [
{
"action": "ADDRESSES"
}
],
"matchId": "P_000000000"
}
Array of objects (PeopleDetailsAction)
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 Addresses action returns a JSON object containing information about the addresses of the person included in PeopleDetailsActionsResponse's addresses property.

object (PersonSummary)

Person format used across the Investigate API

object (PersonAddresses)
object (DeceasedRegisterActionResponse)
object (InsolvencyActionResponse)
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": {
    },
  • "addresses": {
    },
  • "deceasedRegister": {
    },
  • "insolvency": {
    },
  • "erroredResponses": [
    ],
  • "tags": [
    ],
  • "meta": {
    }
}
A standard example workflow is detailed in Details Actions page​