The status of an identification process can be requested at any time through the REST API. You can use a simple GET request for a list of all Idents by their respective status:
GET {{GATEWAYHOST}}/api/v1/{{CUSTOMER}}/identifications?pending=true
Other options are pending=true, aborted=true, canceled=true, or successful=true for a list of the identifications with the respective status.
You can also check the status of an individual Ident using either the transaction number used to create the Ident, or the Ident-ID:
GET {{GATEWAYHOST}}/api/v1/{{CUSTOMER}}/identifications/TRANSACTIONNUMBER
or
GET {{GATEWAYHOST}}/api/v1/{{CUSTOMER}}/identifications/TST-RKPVN
We can also push the status using webhooks, which is the most efficient method to keep you updated.