KYC Process
1 ) Create a Person: An Email will be sended automatically with documents request
2 ) Person must upload all personal document requiered for the Organization.
3 ) Dokstor validate MRZ Data, Selfie, Proof of address and identifies a fraudulent documentation automatically
Request
Dokstor’s API its using the standard HTTP verbs and services REST
Each type of request uses a different HTTP method.
- GET: queries data. It does not modify the status of the entities.
- POST: adds or updates one or more entities.
- DELETE: deletes one or more entities.
The request input data can be present in three different places.
- URL path: usually only for entity ids (ie. DELETE /user/{userid}). Applies to all HTTP methods.
- URL query string: a list of (usually optional) query parameters (ie. GET /user?first=1&max=50). Applies to GET requests.
- Body: a JSON object with entity data. Applies to POST requests.
Response
A response returns OK (200 status code) or an error (any other status code). An OK always returns a JSON object in the body of the response. The JSON object can be empty or data structure depending on the endpoint called. An error will usually return