Comment on page
Address Parse
Parse methods convert unstructured input data into structured component parts output.
The parse method takes one or more addresses as the input and parse them into component parts, returning a list of the parsed results. The maximum number of input addresses is 100 per call.
POST https://hosted.mastersoftgroup.com/harmony/rest/{locale}/parse/address
{
"payload": [ { "fullAddress": "L 2 SE 202 220 GEORGE ST, SYDNEY NSW 2000" } ],
"sourceOfTruth": "AUPAF"
}
{
"status": "SUCCESS",
"messages": [],
"payload": [
{
"status": "SUCCESS",
"messages": [],
"payload": [
{
"attributes": null,
"buildingName": "",
"careOf": "",
"fullAddress": "L 2 SE 202 220 GEORGE ST, SYDNEY NSW 2000",
"country": "",
"postcode": "2000",
"street2":"",
"street": "GEORGE ST",
"streetName": "GEORGE",
"streetSuffix": "",
"streetType": "ST",
"streetNumber": "220",
"postal": "",
"postalNumber": "",
"postalType": "",
"buildingName": "",
"subdwelling": "L 2 SE 202",
"flatUnitNumber": "202",
"flatUnitType": "SE",
"floorLevelNumber": "2",
"floorLevelType": "L",
"lotNumber": null,
"eid": null,
"id": null,
"exception": null,
"state": "NSW",
"locality": "SYDNEY"
}
]
}
]
}
Last modified 4mo ago