To use the Loqate phone number and email address services, you must supply a valid API key. First, stop and remove the dq-python-services service:
$ docker compose stop dq-python-services [+] Running 1/1 ⠿ Container dq-python-services Stopped $ docker compose rm dq-python-services ? Going to remove dq-python-services Yes [+] Running 1/0 ⠿ Container dq-python-services Removed
Then, edit install/dq-python-services/config/loqate-service-config.json to change values for _email_api_key and _phone_api_key:
{ "_email_api_url":"https://api.addressy.com/EmailValidation/Interactive/Validate/v2.00/xmla.ws?",
"_email_api_key": "AAAA-BBBB-1234-1234",
"_email_api_timeout":"15000",
"_phone_api_url":"https://api.addressy.com/PhoneNumberValidation/Interactive/Validate/v2.20/xmla.ws?",
"_phone_api_key": "AAAA-BBBB-1234-1234",
"_phone_api_timeout":"15000"
}Rebuild and restart the dq-python-services service:
docker compose up -d --build --force-recreate dq-python-services