Profile

Discover the personal information we retrieve from Formal Economy integrations.

Definition

The profile of a formal economy account contains basic personal information that can complement your onboarding or security processes.

You can access the profile of an account via the GET profile endpoint .

Profile Information for Formal Economy Accounts

Let's begin with a representative example of the profile information you could recover from our GET Profile Endpoint:

{
  "success": true,
  "error": null,
  "data": {
    "account_id": "3869ce98-fa81-4183-bb2a-d1ecff0c18ba",
    "external_id": null,
    "profile": {
      "first_name": "Johann",
      "last_name": "Sebastian Bach",
      "email": null,
      "birthday": "1985-03-31"
    },
    "ids_info": [
      {
        "type": "social_security_number",
        "name": "nss",
        "value": "10140050215"
      }
    ]
  }
}

Profile Section Data Dictionary

In the example above we can see there is a profile object with the following fields:

Field NameTypeNullableExample
first_namestringtrueJose Carlos
last_namestringtrueHuerta Garcia
emailstringtrue[email protected]
birthdaystringtrue1990-01-01

IDs Info Section Data Dictionary

In the example above we can see there is an ids_info object with the following fields:

DataDescriptionTypeExample
typeID Typestringsocial_security_number
nameAPI Code for this ID Typestringnss
valueThe specific value of this credentialstring32128929096

📘

Disclaimer

The previous representative example shows the profile information we recover most of the time for Formal Economy Platforms. However, our dependency on external integrations prevents us from guaranteeing our clients we will recover all of it every single time.


What’s Next