Public
Documentation Settings

Standard MobileMatch to KBA

Before you start,

Create a new Environment so this project can save and write information for you automatically.

Follow these instructions step-by-step to use this project properly

If you get stuck, or decide to walk through this project again with new data, call each step in order to ensure the old data gets replaced.

POST0) Get Token

https://api.preprod.iddataweb.com/v1/token?grant_type=client_credentials
AUTHORIZATIONBasic Auth
Username

<username>

Password

<password>

PARAMS
grant_type

client_credentials

Example Request
curl
curl --location --request POST 'https://api.preprod.iddataweb.com/v1/token?grant_type=client_credentials' \
--data ''
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POST0.1) Country Selection

https://preprod.admin.iddataweb.com/verification/link
HEADERS
Authorization

Bearer token

Bodyraw (json)
json
{
	"apikey": "{{forwardApiKey}}",
    "credential": "(used as a unique identifier) e.g. employee@company.com",
    "appID":"YOUR_APPLICATION_NAME e.g. 'Employee Onboarding App'",
    "userAttributes": [
        {
            "attributeType": "Country",
            "values": {
                "country": "US"
            }
        }
    ]
}
Example Request
curl
curl --location 'https://preprod.admin.iddataweb.com/verification/link' \
--header 'Authorization: Bearer token' \
--data-raw '{
	"apikey": "{{forwardApiKey}}",
    "credential": "(used as a unique identifier) e.g. employee@company.com",
    "appID":"YOUR_APPLICATION_NAME e.g. '\''Employee Onboarding App'\''",
    "userAttributes": [
        {
            "attributeType": "Country",
            "values": {
                "country": "US"
            }
        }
    ]
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POST1) MobileMatch - Verify PII

https://api.preprod.iddataweb.com/v1/slverify
HEADERS
Content-Type

application/json

Authorization

Bearer token

Bodyraw
{
	"apikey": "{{forwardApiKey}}",
    "credential": "{{credential}}",
    "appID":"{{appID}}",
    "asi": "{{asi}}",
    "userAttributes": [
        {
            "attributeType": "FullName",
            "values": {
                "fname": "John",
                "mname": "",
                "lname": "Doe"
            }
        },
        {
            "attributeType": "InternationalAddress",
            "values": {
                "country": "US",
                "administrative_area_level_1": "VA",
                "locality": "Vienna",
                "postal_code": "12345",
                "route": "Way Street Road",
                "street_number": "1234"
            }
        },
        {
            "attributeType": "InternationalTelephone",
            "values": {
                "dialCode": "1",
                "telephone": "1234567890"
            }
        },
        {
            "attributeType": "DOB",
            "values": {
                "day": "01",
                "month": "01",
                "year": "1901"
            }
        }
    ]
}
Example Request
curl
curl --location 'https://api.preprod.iddataweb.com/v1/slverify' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer token' \
--data '{
	"apikey": "{{forwardApiKey}}",
    "credential": "{{credential}}",
    "appID":"{{appID}}",
    "asi": "{{asi}}",
    "userAttributes": [
        {
            "attributeType": "FullName",
            "values": {
                "fname": "John",
                "mname": "",
                "lname": "Doe"
            }
        },
        {
            "attributeType": "InternationalAddress",
            "values": {
                "country": "US",
                "administrative_area_level_1": "VA",
                "locality": "Vienna",
                "postal_code": "12345",
                "route": "Way Street Road",
                "street_number": "1234"
            }
        },
        {
            "attributeType": "InternationalTelephone",
            "values": {
                "dialCode": "1",
                "telephone": "1234567890"
            }
        },
        {
            "attributeType": "DOB",
            "values": {
                "day": "01",
                "month": "01",
                "year": "1901"
            }
        }
    ]
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GET2a) Send FastTap Link

https://api.preprod.iddataweb.com/v1/doccapture/sendlink?dialCode={{dialCode}}&telephone={{mobilePhoneNumber}}&apikey={{forwardApiKey}}
HEADERS
Authorization

Bearer token

Content-Type

application/json

PARAMS
dialCode

{{dialCode}}

telephone

{{mobilePhoneNumber}}

apikey

{{forwardApiKey}}

Example Request
curl
curl --location -g 'https://api.preprod.iddataweb.com/v1/doccapture/sendlink?dialCode={{dialCode}}&telephone={{mobilePhoneNumber}}&apikey={{forwardApiKey}}' \
--header 'Authorization: Bearer token' \
--header 'Content-Type: application/json'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers