Telefónica · Schema

SimSwapCheckRequest

TelecommunicationsMobile NetworkCAMARAOpen GatewayAuthenticationFraud PreventionLocation Services

Properties

Name Type Description
phoneNumber string Phone number to check in E.164 format.
maxAge integer Maximum age in hours to check for a SIM swap. Default is 240 (10 days).
View JSON Schema on GitHub

JSON Schema

telefonica-simswapcheckrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimSwapCheckRequest",
  "title": "SimSwapCheckRequest",
  "type": "object",
  "required": [
    "phoneNumber"
  ],
  "properties": {
    "phoneNumber": {
      "type": "string",
      "description": "Phone number to check in E.164 format.",
      "pattern": "^\\+[1-9][0-9]{4,14}$",
      "example": "+34123456789"
    },
    "maxAge": {
      "type": "integer",
      "description": "Maximum age in hours to check for a SIM swap. Default is 240 (10 days).",
      "default": 240,
      "minimum": 1,
      "maximum": 2400
    }
  }
}