MetaMap · Example Payload

Metamap Comply Advantage Example

Identity VerificationKYCAMLAnti-Money LaunderingComplianceBiometricsDocument VerificationFacematchLivenessGovCheckWatchlistBackground CheckCredit CheckRiskFraud PreventionOnboardingLatAmAfricaMobile SDK

Metamap Comply Advantage Example is an example object payload from MetaMap, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.prod.metamap.com/safety/v1/checks/comply-advantage",
    "headers": {
      "Content-Type": "application/json",
      "Authorization": "Bearer <YOUR_METAMAP_ACCESS_TOKEN>"
    },
    "body": {
      "fullName": "John Doe",
      "dateOfBirth": "1980-05-12",
      "country": "MX",
      "callbackUrl": "https://yourdomain.com/webhook-listener"
    }
  },
  "response": {
    "screened": true,
    "hits": [
      {
        "list": "OFAC SDN",
        "name": "John Doe",
        "category": "sanction",
        "score": 0.87
      }
    ]
  }
}