ASIC Banned Persons Search
/api/v2/asic_banned_persons
operationId: asic_banned_persons
Live: https://gdapi.globaldata.net.au/api/v2/asic_banned_persons · Sandbox: https://sandbox-gdapi.globaldata.net.au/api/v2/asic_banned_persons
ASIC Banned Persons Search searches the ASIC register of banned persons.
This endpoint allows multiple requests to be simultaneously made in a single query.
Narrow Search
A narrow search will match exact first name, exact last name. The middle name is matched based on the similarity_threshold. This is the most restrictive search and should be used for low risk searches.
Medium Search
A medium search will match exact last name, and will allow for a partial match on other names based on the similarity_threshold. This is a good balance between accuracy and flexibility.
Broad Search
A broad search will match partial first name, partial middle name, and partial last name. This is the most flexible search and should be used for high risk searches.
Sandbox environment data
When simulating queries in the sandbox environment, the following records will return a match. Any other name returns an empty matches array.
| First name | Middle name | Last name | Banned type | Suburb | State |
|---|---|---|---|---|---|
| John | Michael | Smith | afs_banned_disqualified | Shepparton | VIC |
| John | Robert | Smith | banned_futures | Sydney | NSW |
| Jane | Penny Sally | Roberts | banned_securities | Camberwell | VIC |
| Jane | - | Roberts | banned_securities | Camberwell | VIC |
| J | S | Roberts | credit_banned_disqualified | Melbourne | VIC |
| P | - | Zao | disqualified_director | Woolongong | NSW |
| Simone | N | Zao | disqualified_smsf | - | - |
| Adam | Darren | Halliday | disqualified_director | Illawong | NSW |
Request body
Content type application/json.
The details of the individuals to search for.
| Field | Description |
|---|---|
search_type |
string The type of search to perform. Narrow searches for exact matches, medium searches for similar matches and broad searches for partial matches. |
banned_types |
array of strings The type of banned person to search for. Leave empty to search for all types. |
similarity_threshold |
number [0..100] The minimum similarity percentage to return results for. |
requests |
array of objects The list of requests to make. |
requests[]. |
string The unique identifier for this request. This can be used match the request in the results. |
requests[]. |
string [1..50 characters] The first name of the individual |
requests[]. |
string [1..50 characters] or null The middle name of the individual |
requests[]. |
string [1..50 characters] The last name of the individual |
Responses
Successful response
application/json
| Field | Description |
|---|---|
message |
string A message indicating the result of the request. This will be |
function |
string The function that was called. |
api_reference |
string (uuid) A unique identifier for this request. This can be used to track the request in the logs. |
results |
array of objects A list of results for each of the requests made. |
results[]. |
string The unique identifier for this request. This can be used match the request in the results. |
results[]. |
array of objects Array of matched individuals. |
results[]. |
string The first name of the individual. |
results[]. |
string or null The middle name of the individual. |
results[]. |
string The last name of the individual. |
results[]. |
string The type of banned person the individual is. |
results[]. |
string ASIC's internal document number used to identify the document containing the ban or disqualification notice/order. |
results[]. |
string The start date of the ban or disqualification. |
results[]. |
string or null The end date of the ban or disqualification. |
results[]. |
string or null The suburb of the individual. |
results[]. |
string or null The state of the individual. |
results[]. |
string or null The postcode of the individual. |
results[]. |
string or null The country of the individual. |
results[]. |
string or null Additional information associated with the banned or disqualified person. |
results[]. |
number The similarity of the name of the individual to the search name. |