The MessageMedia Lookups API provides a number of endpoints for validating the phone numbers you’re sending to by checking their validity, type and carrier records.
You must have Python 2 >=2.7.9 or Python 3 >=3.4 installed on your system to install and run this SDK. This SDK package depends on other Python packages like nose, jsonpickle etc.
These dependencies are defined in the requirements.txt file that comes with the SDK.
To resolve these dependencies, you can use the PIP Dependency manager. Install it by following steps at https://pip.pypa.io/en/stable/installing/.
Python and PIP executables should be defined in your PATH. Open command prompt and type pip --version.
This should display the version of the PIP Dependency Manager installed if your installation was successful and the paths are properly defined.
- Using command line, navigate to the directory containing the generated files (including
requirements.txt) for the SDK. - Run the command
pip install -r requirements.txt. This should install all the required dependencies.
The following section explains how to use the MessageMediaLookups SDK package in a new project.
Open up a Python IDE like PyCharm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.
Click on Open in PyCharm to browse to your generated SDK directory and then click OK.
The project files will be displayed in the side bar as follows:
Create a new directory by right clicking on the solution name as shown below:
Name the directory as "test"
Add a python file to this project with the name "testsdk"
Name it "testsdk"
In your python file you will be required to import the generated python library using the following code lines
from message_media_lookups.message_media_lookups_client import MessageMediaLookupsClientAfter this you can write code to instantiate an API client object, get a controller object and make API calls. Sample code is given in the subsequent sections.
To run the file within your test project, right click on your Python file inside your Test project and click on Run
You can test the generated SDK and the server with automatically generated test cases. unittest is used as the testing framework and nose is used as the test runner. You can run the tests as follows:
- From terminal/cmd navigate to the root directory of the SDK.
- Invoke
pip install -r test-requirements.txt - Invoke
nosetests
In order to setup authentication and initialization of the API client, you need the following information.
| Parameter | Description |
|---|---|
| basic_auth_user_name | The username to use with basic authentication |
| basic_auth_password | The password to use with basic authentication |
API client can be initialized as following.
# Configuration parameters and credentials
basic_auth_user_name = 'basic_auth_user_name' # The username to use with basic authentication
basic_auth_password = 'basic_auth_password' # The password to use with basic authentication
client = MessageMediaLookupsClient(basic_auth_user_name, basic_auth_password)An instance of the LookupsController class can be accessed from the API Client.
lookups_controller = client.lookupsUse the Lookups API to find information about a phone number. A request to the lookups API has the following format:
/v1/lookups/phone/{phone_number}?options={carrier,type}The{phone_number}parameter is a required field and should be set to the phone number to be looked up. The options query parameter can also be used to request additional information about the phone number. By default, a request will only return thecountry_codeandphone_numberproperties in the response. To request details about the the carrier, includecarrieras a value of the options parameter. To request details about the type, includetypeas a value of the options parameter. To pass multiple values to the options parameter, use a comma separated list, i.e.carrier,type. A successful request to the lookups endpoint will return a response body as follows:{ "country_code": "AU", "phone_number": "+61491570156", "type": "mobile", "carrier": { "name": "Telstra" } }Each property in the response body is defined as follows:
country_codeISO ALPHA 2 country code of the phone numberphone_numberE.164 formatted phone numbertypeThe type of number. This can be"mobile"or"landline"carrierHolds information about the specific carrier (if available)
nameThe carrier's name as reported by the network
def get_lookup_a_phone_number(self,
phone_number,
options=None)| Parameter | Tags | Description |
|---|---|---|
| phoneNumber | Required |
The phone number to be looked up |
| options | Optional |
TODO: Add a parameter description |
phone_number = '+61491570156'
options = 'carrier,type'
result = lookups_controller.get_lookup_a_phone_number(phone_number, options)| Error Code | Error Description |
|---|---|
| 404 | Number was invalid |

