Company Search through API
Last updated
Last updated
Access the Trust Platform and then the Workflow Builder. For the moment, we only have one KYB flow template available. Select the pre-configured template and proceed with creating the workflow.
The global context is dynamic and different countries use different ways of identifying companies. For this reason, you need to look up the identifier of the company you want to submit to workflow.
Using the Global API and the Services resource, make a request asking for the kybCompanySearch
service and providing the information of the known company. You can find more details on how to make this request visiting .
In response, two identifiers are expected: creditReportId
and businessIdentityId
.
Once you have at least one identifier, you can start a transaction in the flow configured in the step.
Using the Global API and the Orchestrations resource, make a request to create a transaction. In request’s body, enter at least one of the identifiers obtained in the step. You can find more details on how to make this request visiting .
If successful, the ID of the newly created transaction will be available in the body of the response, in an attribute named transactionId
.
Finally, once you have the transaction ID, you can retrieve the information that was requested according to the Workflow configuration created in the step.
Alternative: wait for a webhook update and only get the info when the transaction has an update. See more details .