> 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 %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api2-ekycapis.innov8tif.com/okaydb/okaydb-all/digital-footprint-analysis/versions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
