Flows and Sequence Diagram
Sequence Diagram
Explanation of steps
- Search for Company: /data/v2/businesses?search=(name | abn | acn)
- The following endpoint can be used to search a company using it’s name.
- https://apidocs.frankiefinancial.com/docs/business-look-up
- As a response you will get a list of companies that match your criteria
- If you enter an ABN then you only get the one company with it basic details.
- This step is optional and only required if you don’t have the companies ABN/ ACN to query Single Level or UBO report
- Request ASIC or UBO report: /business/ownership/query
- The following endpoint can be used to search a company using it’s name.
- The following endpoint can be used to generate an ASIC or UBO report.
- Use the following Query Parameters for generating the UBO Report
onlyProfile=false
generateReport=UBO
checkType=pep_media
This will ensure we are doing AML checks on categories listed in entityCategoriesentityCategories=organisation,officers_directors,direct_owners,ubos
AML checks will be performed on these categories of entity from the UBO report.resultLevel=full
This will ensure the detailed level of result is sent back which contains the AML verification results
Use the following Query Parameters for generating an ASIC extractonlyProfile=true
generateReport=SINGLE-LEVEL-AML
entityCategories=organisation
resultLevel=full
This will ensure the detailed level of result is sent back which contains the AML verification results- Using this endpoint you can also request verification of UBO/ officeholder by adding checkType query param. This is purely optional and depends on your organisation’s use case. Endpoint mentioned in step 3 is specifically for verifying individuals and organisations that the report is generated for.
- It is important to note that this is an asynchronous call and you will never receive a report as the response of
/business/ownership/query
. As a response to this request you will only receive arequestId
andentityId
. You will need to keep track of these values to fetch the report. Refer to Asynchronous Calls (Backgrounding Processes) for more details on async calls. - You have the option to configure a webhook so Frankie will notify you once the report is ready.
- Retrieve API Response: https://apidocs.frankiefinancial.com/docs/when-can-i-retrieve-data
- Run KYC/ AML checks: https://apidocs.frankiefinancial.com/docs/perform-checks-for-associated-individuals
- If KYC/ AML checks were not run as part of report generation (Step 2). You can run them as part of this step.
- Set the following Query Parameters to verify the individuals and/ or organisation
entityCategories
checkType
- Once the AML/KYC results are ready you will receive a web-hook notification and you can retrieve the results then (Step 3)
Conditions
When requesting a UBO report using the following endpoint:
POST /business/ownership/query
, depending on the organization type and company structure then FrankieOne shall only perform the checks based on the organization type data returned from creditor watch.
FrankieOne will determine if the organization is suitable for an ownership query based on if an ACN is provided or through credit checks.
- As a sole trader would not usually be registered with ASIC unless operating under a different trading name and would result in a simple report being generated showing the sole trader as 100% owner.
- A proprietary limited company with a simple organizational structure with only direct owners would result in an ASIC report being generated.
- A complex company structure with multiple levels of ownership would result in a UBO report being generated.
Example
curl --location --request POST 'https://api.kycaml.uat.frankiefinancial.io/compliance/v1.2/business/ownership/query?generateReport=UBO&checkType=pep_media&resultLevel=full&entityCategories=organisation,ubos' \
--header 'api_key: <key>' \
--header 'X-Frankie-CustomerId: customer_id' \
--header 'Content-Type: application/json' \
--data-raw '{
"organisation": {
"entityType": "ORGANISATION",
"extraData": [
{
"kvpKey": "ABN",
"kvpValue": "98008659596",
"kvpType": "id.external"
},
{
"kvpKey": "customer_reference",
"kvpValue": "customer-01",
"kvpType": "id.external"
}
]
}
}'
Updated 4 months ago