AT&T · Schema

SimSwapCheckRequest

SimSwapCheckRequest schema

5GBroadbandCAMARAConnectivityDevice StatusEdge ComputingEnterpriseFortune 100MessagingMobileNetworkNetwork APIsSIM SwapSpeechTelecommunicationsWirelessWireline

Properties

Name Type Description
phoneNumber string Mobile phone number in E.164 format associated with the SIM to check.
maxAge integer Maximum age in hours to check for a SIM swap. If not provided, the default lookback period is used.
View JSON Schema on GitHub

JSON Schema

sim-swap-api-sim-swap-check-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/att/refs/heads/main/json-schema/sim-swap-api-sim-swap-check-request-schema.json",
  "title": "SimSwapCheckRequest",
  "description": "SimSwapCheckRequest schema",
  "type": "object",
  "required": [
    "phoneNumber"
  ],
  "properties": {
    "phoneNumber": {
      "type": "string",
      "description": "Mobile phone number in E.164 format associated with the SIM to check.",
      "example": "+12125551234"
    },
    "maxAge": {
      "type": "integer",
      "description": "Maximum age in hours to check for a SIM swap. If not provided, the default lookback period is used.",
      "minimum": 1,
      "maximum": 2400,
      "example": 240
    }
  }
}