ADC Check
/api/v2/adc_check
operationId: adc_check
Live: https://gdapi.globaldata.net.au/api/v2/adc_check · Sandbox: https://sandbox-gdapi.globaldata.net.au/api/v2/adc_check
The ADC Check API allows you to check if an individual is recorded as deceased against the ADC (Australian Death Check) service.
Note: If you are looking for ADC Check (Custodial), please refer to the Deceased Check endpoint.
ADC Check
The returned records are checked against the ADC (Australian Death Check) service and any matching records are returned in the 'matches' field of the response. Note that the ADC check is performed based on the name and date of birth of the individual. The results will also include the state of the individual, and this should be taken into account when determining if the result is a match.
When searching a name, the first and last names must match exactly. The optional middle name(s) can be partial matches. It is recommended that the full name (including middle names) are used when searching for a name.
Examples:
Assuming the ADC has the following record: Name: John Henry Smith
Different search names and the expected matched name result:
| Searched First Name | Searched Middle Name | Searched Last Name | Matched First Name | Matched Last Name | name_match |
|---|---|---|---|---|---|
| John | Henry | Smith | John Henry | Smith | exact |
| John | Henry Peter | Smith | John Henry | Smith | partial |
| John | Peter Henry | Smith | John Henry | Smith | partial |
| John | Peter | Smith | John Henry | Smith | partial |
| John | Smith | John Henry | Smith | partial |
Sandbox environment data
When simulating queries in the sandbox environment, the following records will return a match:
| Reference | First Name | Last Name | State | Date of Birth | Date of Death | Date of Death Range |
|---|---|---|---|---|---|---|
| 123400001 | John | Smith | VIC | 1998-03-21 | 2023-07-24 | |
| 123400002 | John | Doe | NSW | 1971-01-23 | 2003-08-22 | |
| 123400003 | John Andrew | Doe | WA | 1971-01-23 | 2011-11-03 | |
| 123400004 | Mary | Smith | NSW | 1965-02-17 | Between 31/12/2018 and 2/2/2019 |
Request body
Content type application/json.
The details of the record to search
| Field | Description |
|---|---|
first_name |
string The first name of the individual |
middle_name |
string or null The optional middle name of the individual |
last_name |
string The last name of the individual |
birth_date |
string (date) The date of birth of the individual |
Responses
Successful response
application/json
| Field | Description |
|---|---|
message |
string A message indicating the result of the request. This will be |
api_reference |
string (uuid) A unique identifier for this request. This can be used to track the request in the logs. |
matches |
array of objects Array of matched records. |
matches[]. |
string The first name (and middle name if applicable) of the matched individual. |
matches[]. |
string The last name of the matched individual. |
matches[]. |
string or null The dob of the matched individual. |
matches[]. |
string or null The date of death of the matched individual. |
matches[]. |
string or null The date range of death of the matched individual. |
matches[]. |
string The state of the matched individual. |
matches[]. |
string The ADC reference number of the matched record. |
matches[]. |
string The type of match for the name.
|