Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Validate phone number.

 

Endpoint ID:6010
Method:GET
URL:

 /services/phonenumber/parse/{phoneNumber}?countryCode={countryCode}&countryCodeFormat={countryCodeFormat} 

 phoneNumber

Phone number to be validated.

Valid examples

  • +4529254029
  • 29254029 (valid only if country code is specified)
 countryCode

Optional value to identify country of phoneNumber.

 countryCodeFormat 

Optional value to identify countryCode format.

Valid values are

  • ISO2 ( ISO 3166-1 alpha-2 – two letter country codes )
  • ISO3 ( ISO 3166-1 alpha-3 – three letter country codes )
  • ISON ( ISO 3166-1 numeric – three digit country codes )
  • Internet ( top level domain names on web )
  • Custom ( used for legacy phone number beautifier implementation )
Request body:None

Response body:

JSON data with information about the valid phone number 

 

Example – Parse +4529254029
{
	"phoneNumber":+4529254029
	"countryCode": "DK",
	"countryDialCode": "45",
	"numberType": "FixedLineOrMobile"
}

   

Status codes:200

Phone number is validated successfully.

 400

The following sub codes may be returned:

 

400.1Invalid Phone number.
400.2Phone number must be in E164 format if country code is not specified.
400.3Invalid Country code format.
 404

No matching country code found for country code format. 

 

 

 

 

  • No labels