> For the complete documentation index, see [llms.txt](https://api2-ekycapis.innov8tif.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api2-ekycapis.innov8tif.com/okaydb/okaydb-all/digital-footprint-analysis/versions.md).

# Versions

## Version 1

## POST API Request

<mark style="color:green;">`POST`</mark> `https://okaydbdemo.innov8tif.com/ekyc/api/digital-footprint/v1`

This is the Digital Footprint API Request Parameter

#### Request Body

| Name                                                 | Type   | Description                                                            |
| ---------------------------------------------------- | ------ | ---------------------------------------------------------------------- |
| apiKey<mark style="color:red;">\*</mark>             | string | API License Key that will be provided by Innov8tif                     |
| email<mark style="color:red;">\*</mark>              | string | Email address of the targeted user                                     |
| phoneNoCountryCode<mark style="color:red;">\*</mark> | string | Country code of the targeted user phone number *(included symbol "+")* |
| phoneNo<mark style="color:red;">\*</mark>            | string | Phone number of the targeted user                                      |

{% tabs %}
{% tab title="200: OK Successfully received the response" %}
{% code title="Targeted user is active" %}

```javascript
{
    "status": "success",
    "messageCode": null,
    "message": null,
    "result": "active"
}
```

{% endcode %}

{% code title="Targeted user is inactive" %}

```
{
    "status": "success",
    "messageCode": null,
    "message": null,
    "result": "inactive"
}
```

{% endcode %}

{% code title="Targeted user is subtle" %}

```
{
    "status": "success",
    "messageCode": null,
    "message": null,
    "result": "subtle"
}
```

{% endcode %}
{% endtab %}

{% tab title="400: Bad Request Request Error" %}

```javascript
{
    "status": "error"
}
```

{% endtab %}

{% tab title="500: Internal Server Error Internal Server Error" %}

```javascript
{
    "status": "Internal Server Error"
}
```

{% endtab %}
{% endtabs %}

#### Postman Collection

{% file src="/files/TLfneSNCEkeluBD1dEp4" %}
OkayDB Digital Footprint v1
{% endfile %}
