v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Phone Number Configurations

Verify ownership of phone numbers

Verifies ownership of the provided phone numbers and returns a mapping of numbers to their IDs, plus a list of numbers not found in the account.

post/phone_numbers/actions/verify_ownership

Request body

phone_numbersstring[] required

Array of phone numbers to verify ownership for

Example request

{
  "phone_numbers": [
    "+15551234567"
  ]
}

Response

Phone number ownership verification completed.

Example response

{
  "data": {
    "found": [
      {
        "id": "1293384261075731499",
        "number_val_e164": "+15551234567"
      }
    ],
    "not_found": [
      "+15551234568"
    ],
    "record_type": "number_ownership_verification"
  }
}