POST
/
phoneid
Phone ID
curl --request POST \
  --url https://sandbox-umbrella-api.azurewebsites.net/api/services/phoneid \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "phoneNumber": "11234567890",
  "accountLifecycleEvent": "create",
  "externalId": "CustomExternalID7349",
  "originatingIp": "203.0.113.45",
  "addons": {
    "ageVerify": {
      "ageThreshold": 21
    },
    "contact": {
      "email": "jsmith@vero-finto.com"
    },
    "contactMatch": {
      "firstName": "string",
      "lastName": "string",
      "address": "string",
      "city": "string",
      "postalCode": "string",
      "state": "string",
      "country": "string",
      "inputUsed": "email"
    },
    "contactPlus": {
      "billingPostalCode": "95110"
    },
    "numberDeactivation": {
      "carrierName": "Verizon",
      "lastDeactivated": "2016-04-05T00:00:00Z",
      "trackingSince": "2014-10-06T00:00:00Z",
      "status": {
        "code": 2800,
        "description": "Request successfully completed"
      },
      "recycledSinceLastVerification": "not_recycled"
    },
    "portingHistory": {
      "pastXDays": 10
    }
  },
  "consent": {
    "method": 1,
    "timestamp": "2018-05-05T00:00:00Z"
  }
}'
{
  "reference_id": "36475B3EB1DC0C2492E2889F4EACF2CC",
  "sub_resource": "live",
  "status": {
    "code": 300,
    "description": "Transaction successfully completed",
    "updatedOn": "2024/09/09T12:43:42.701105Z"
  },
  "errors": [
    "<string>"
  ],
  "phoneType": {
    "code": "2",
    "description": "MOBILE"
  },
  "blocklisting": {
    "blocked": false,
    "blockCode": 0,
    "blockDescription": "Not blocked"
  },
  "numbering": {
    "cleansing": {
      "call": {
        "countryCode": "43",
        "phoneNumber": "6504142107",
        "cleansedCode": 100,
        "minLength": 7,
        "maxLength": 13
      },
      "sms": {
        "countryCode": "43",
        "phoneNumber": "6504142107",
        "cleansedCode": 100,
        "minLength": 7,
        "maxLength": 13
      }
    },
    "original": {
      "completePhoneNumber": "+436504142107",
      "countryCode": "43",
      "phoneNumber": "6504142107"
    }
  },
  "location": {
    "city": "Countrywide",
    "state": "<string>",
    "zip": "<string>",
    "metroCode": "<string>",
    "county": "<string>",
    "country": {
      "name": "Austria",
      "iso2": "AT",
      "iso3": "AUT"
    },
    "coordinates": {
      "latitude": "<string>",
      "longitude": "<string>"
    },
    "timeZone": {
      "name": "<string>",
      "utcOffsetMax": "+1",
      "utcOffsetMin": "+1"
    }
  },
  "carrier": {
    "name": "Mass Response Service GmbH"
  },
  "live": {
    "subscriberStatus": "ACTIVE",
    "deviceStatus": "REACHABLE",
    "roaming": "UNAVAILABLE",
    "roamingCountry": "<string>",
    "roamingCountryIso2": "<string>"
  }
}
For a usage description of the Phone ID Service, please refer to the Phone ID page.

Endpoint

POST /phoneid

Swagger

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Successfully retrieved phone ID information.

The response is of type object.