Retrieve a Registration
Search a Specific Registration
To retrieve a specific Registration, just make a GET request. The returned result is the most up-to-date JSON of the requested Registration. If the provided identifier is not associated with any object, an HTTP 404 Status will be returned.
- Natural Person:
GET https://api.caas.qitech.app/onboarding/natural_person/12345678
- Legal Person:
GET https://api.caas.qitech.app/onboarding/legal_person/12345678
curl "https://api.caas.qitech.app/onboarding/natural_person/12345678"
-H "Authorization: EXAMPLE-OF-API-KEY"
The curl above returns the JSON that represents a Natural Person object.
curl "https://api.caas.qitech.app/onboarding/legal_person/12345678"
-H "Authorization: EXAMPLE-OF-API-KEY"
The curl above returns the JSON that represents a Legal Person object.
Retrieve PDF
To retrieve a PDF of a registration, simply make a GET request. The returned result is the PDF file generated from the analysis. If you want the PDF to be returned in base64 format, you can add a query string named base64
with the value true
.
PDF generation by the platform is asynchronous and takes a few seconds. If the GET request is made before the PDF is fully generated, a 404 error will be returned with a message explaining the situation. Simply retry after a few seconds and the PDF will be returned.
- Natural Person:
GET https://api.caas.qitech.app/onboarding/natural_person/12345678/pdf
GET https://api.caas.qitech.app/onboarding/natural_person/12345678/pdf&base64=true
- Legal Person:
GET https://api.caas.qitech.app/onboarding/legal_person/12345678/pdf
GET https://api.caas.qitech.app/onboarding/legal_person/12345678/pdf&base64=true
curl "https://api.caas.qitech.app/onboarding/natural_person/12345678/pdf"
-H "Authorization: EXAMPLE-OF-API-KEY"
The curl above returns the PDF file generated by the request.
curl "https://api.caas.qitech.app/onboarding/legal_person/12345678/pdf"
-H "Authorization: EXAMPLE-OF-API-KEY"
The curl above returns the PDF file generated by the request.