Create Address Event

Create Address Events to Address in Address Exchange

Accurately recording Events is critical to understanding the validity of an address.

Resource

where {uuid} is the Address Exchange Address UUID

POST    https://hosted.mastersoftgroup.com/harmony/rest/address/exchange/v1/addresses/{uuid}/events

Request

The request uses the uuid of the address to post Address Actions.

Once sent you cannot edit the Action via this endpoint please see Edit Address Action.

{
  "action": "accept" or "deny",
  "description": "string",
  "newAssessment": true, //always mark true
}

Response

{
    "status": "SUCCESS",
    "messages": [],
    "payload": {
        "uuid": "72d22f6e-dac3-4be8-adc8-c65f5f9a7fe4",
        "action": "accept",
        "source": {
            "id": 6,
            "code": null,
            "externalCode": null,
            "description": null,
            "internalOnly": true,
            "descriptionOnly": false
        },
        "customerId": xxxx,
        "eventDate": 1691992474387,
        "score": 10,
        "description": "Number on door. Alias for 25 Milton.",
        "attributes": {}
    }
}

Last updated