Skip to main content

Input User

The input_user provider allows manual data entry and uploading of files, with the file itself being treated as data. This connector is part of Qard's ecosystem and differs from others because it involves write operations.

  • Company Officer: to retrieve a list of company officiers.
  • Beneficial Owner: to retrieve a list of beneficial owners.
  • Conformity Check: to retrieve a list of verification for company, officers, beneficial owners or background check v2 nodes.

Test Input User integration:

1. Enable Input User provider:

(PUT) /api/v6/providers/input_user
{
"enable": true
}

2. Settings Input User provider:

(PUT) /api/v6/providers/input_user/settings
{
"auto_connect": true
}

3. Create Input User data connection:

(POST) /api/v6/users/{userId}/data-connections
{
"requested_data_types": [
"COMPANY_OFFICER",
"BENEFICIAL_OWNER",
"CONFORMITY_CHECK"
],
"provider_name": "input_user"
}

4. Create a synchronization:

After validating that the data connection status is CONNECTED, you can run a new synchronization.

(POST) /api/v6/users/{userId}/sync
{
"data_types": [
"COMPANY_OFFICER",
"BENEFICIAL_OWNER",
"CONFORMITY_CHECK"
]
}

To verify that you are receiving the right data, check out these endpoints:

  • GET /api/v6/users/{userId}/company-officers
  • GET /api/v6/users/{userId}/beneficial-owners
  • GET /api/v6/users/{userId}/conformity-checks