Telefónica · Example Payload

Telefonica Kyc Match Example

TelecommunicationsMobile NetworkCAMARAOpen GatewayAuthenticationFraud PreventionLocation Services

Telefonica Kyc Match Example is an example object payload from Telefónica, 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://opengateway.telefonica.com/v1/kyc-match",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "phoneNumber": "+34123456789",
      "givenName": "Juan",
      "familyName": "Garcia",
      "birthdate": "1985-06-15",
      "email": "juan.garcia@example.com"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "phoneNumberMatch": "true",
      "givenNameMatch": "true",
      "familyNameMatch": "true",
      "birthdateMatch": "true",
      "emailMatch": "false"
    }
  }
}