Telefónica · Example Payload

Telefonica Location Verification Example

TelecommunicationsMobile NetworkCAMARAOpen GatewayAuthenticationFraud PreventionLocation Services

Telefonica Location Verification 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/location-verification/verify",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "device": {
        "phoneNumber": "+34123456789"
      },
      "area": {
        "areaType": "CIRCLE",
        "center": {
          "latitude": 40.416775,
          "longitude": -3.703790
        },
        "radius": 2000
      },
      "maxAge": 120
    }
  },
  "response": {
    "status": 200,
    "body": {
      "verificationResult": "TRUE",
      "lastLocationTime": "2026-04-28T14:30:00Z"
    }
  }
}