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
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"
}
}