| Company | Company information. |
| CompanyRestRequest | Request wrapper for company lookup REST methods. |
| CompanyRestResponse | Response wrapper for company lookup REST methods. |
Company Information
{
"name":"xxx",
"abn":"xxx",
"statecode":"xxx",
"postcode":"xx",
"status":"xx",
"legalName":"xx",
"acn": "xx",
"isCurrentIndicator": "Y/N"
}
An CompanyRestRequest object is used when invoking the Harmony RightAddress company lookup REST service methods.
Lookup by the company name
{
"payload":{"name":"abc"} ]
}
Lookup by the ASIC number (ACN or ARBN)
{
"payload":{"name":"xxxx6693"},
"apiName":"SearchByASICv201408"
}
An CompanyRestResponse object is returned from the Harmony RightAddress company lookup REST service methods.
{
"status": "SUCCESS",
"messages": [],
"payload": [
{
"name":"xxx",
"abn":"xxx",
"statecode":"xxx",
"postcode":"xx",
"status":"xx",
"legalName":"xx",
"acn": null,
"isCurrentIndicator": "Y"
},,....
]
}