Banned and Disqualified Person Search
/api/v2/banned_disqualified_persons
operationId: banned_disqualified_persons
Live: https://gdapi.globaldata.net.au/api/v2/banned_disqualified_persons · Sandbox: https://sandbox-gdapi.globaldata.net.au/api/v2/banned_disqualified_persons
Banned and Disqualified Person Search searches multiple public authorities for persons who have been banned or disqualified from performing a role.
The sources used in this search include:
- ASIC Banned Persons Register
- ATO Disqualified SMSF Trustees (as published by the ATO)
This endpoint allows multiple requests to be simultaneously made in a single query.
Search Types
The search types affect how the names are matched. One of these three search types must be provided.
| Search Type | Description |
|---|---|
| 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. |
Similarity Threshold
The similarity_threshold parameter controls how closely a returned name must match the search input to be included in the results. For each record, the API calculates a similarity score by comparing the search values (first, middle, and last names) against the result's names by measuring their likeness. This likeness is calculated by comparing the characters in the search name and the result name, measuring how much of the text overlaps, and expressing that as a percentage similarity.
These individual scores are averaged into an overall similarity percentage, which is stored with each result. The similarity_threshold then acts as a filter to only results with an average similarity equal to or greater than the threshold are returned. The returned result includes the overall similarity percentage in the name_similarity property.
Banned Types
The banned_types parameter controls which types of banned person to search for. If omitted, the API will search for all types.
The available types are:
| Banned Type | Description |
|---|---|
| afs_banned_disqualified | A financial service provider banned or disqualified under section 922A(2) of Corporations Act 2001 |
| banned_futures | Banned futures representatives register (pre-AFS licences) |
| banned_securities | Banned securities representatives register (pre-AFS licences) |
| credit_banned_disqualified | Persons against whom a banning order or disqualification order is made under Part 2-4 of the NCCP Act |
| disqualified_director | The company directors and other office holders disqualified under 1274AA of Corporations Act 2001 |
| disqualified_smsf | Disqualified SMSF auditors for whom an order disqualifying the person from being an approved SMSF auditor is in force under 130F of the SIS Act |
| ato_disqualified_trustee | Persons disqualified from acting as a trustee of an SMSF |
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. The same names are seeded into both registers, so an unfiltered search for one of them will typically return a record from each.
ASIC banned persons register
| 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 |
ATO disqualified trustees register (returned as banned_type: ato_disqualified_trustee)
| First name | Middle name | Last name | Suburb | State | Disqualified |
|---|---|---|---|---|---|
| John | Michael | Smith | Shepparton | VIC | 2021-02-01 |
| John | Robert | Smith | Sydney | NSW | 2021-03-01 |
| Jane | Penny Sally | Roberts | Camberwell | VIC | 2021-04-01 |
| Jane | - | Roberts | Camberwell | VIC | 2021-05-01 |
| J | S | Roberts | Melbourne | VIC | 2021-06-01 |
| P | - | Zao | Woolongong | NSW | 2021-07-01 |
| Simone | N | Zao | - | - | 2021-08-01 |
| Adam | Darren | Halliday | Illawong | NSW | 2021-09-01 |
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 Document or reference 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 2 letter ISO 3166-2 country code |
results[]. |
string or null Additional information associated with the banned or disqualified person. |
results[]. |
string or null The URL of the document containing the ban or disqualification notice/order (if available). |
results[]. |
number The similarity percentage of the name of the individual to the search name. |