Heimdall APIs
  1. Schemas
Heimdall APIs
  • About
  • Authentication
    • Intro
    • Get access token
      POST
  • KYC
    • Query person status
      POST
    • Query person status simple
      POST
    • Query person CAP BR
      POST
    • Query person PEP BR
      POST
    • Get query result
      GET
  • Brazil
    • Zip code/CEP
      GET
  • Schemas
    • Schemas
      • Fields
        • Person ID (CPF)
        • fullName
        • motherFullName
        • Date of birth
        • Date of death
        • Webhook
        • personStatus
      • Query Result
      • Person
      • Person CAP
      • Person PEP
      • Person KYC
      • Person Verification
      • Verification
      • address
  1. Schemas

person-kyc(Person KYC)

{
    "personId": "stringstrin",
    "fullName": "string",
    "dateOfBirth": "2019-08-24",
    "dateOfDeath": "2019-08-24",
    "motherFullName": "string",
    "lastVerification": {
        "error": "string",
        "status": "string",
        "registredAt": "2019-08-24",
        "verifiyngDigit": "string",
        "protocolCode": "string",
        "verifiedAt": "2019-08-24"
    },
    "addresses": [
        null
    ],
    "pep": [
        {
            "personId": "string",
            "name": "string",
            "aliases": "string",
            "dateOfBirth": "2019-08-24",
            "countries": "string",
            "addresses": "string",
            "identifiers": "string",
            "sanctions": "string",
            "phones": "string",
            "emails": "string",
            "sourceName": "string",
            "sourceUrl": "string"
        }
    ],
    "sanctions": [
        {
            "personId": "string",
            "name": "string",
            "aliases": "string",
            "dateOfBirth": "2019-08-24",
            "countries": "string",
            "addresses": "string",
            "identifiers": "string",
            "sanctions": "string",
            "phones": "string",
            "emails": "string",
            "sourceName": "string",
            "sourceUrl": "string"
        }
    ],
    "cap": {
        "personId": "11122233344",
        "fullName": "Player Name",
        "nickname": "Nickname",
        "dateOfBirth": "12/04/1998",
        "cofederation": "cbf",
        "sport": "soccer",
        "team": "Flamengo"
    }
}