You are trying to send an SMS, it appears. For that, you need to do a POST.
The Python code is given:
import requests
url = 'https://apirest.isendpro.com/cgi-bin/sms'
params = {
'keyid': 'a296464ce012b8ab710a',
'num': '33601020304',
'sms': 'Bonjour! Bienvenue sur iSendPro!',
'emetteur': 'isendpro'
}
response = requests.post(url, params)
print(response.text)
You need to configure your webhook as follows:
Url: https://apirest.isendpro.com/cgi-bin/sms
HTTP Verb: POST
HTTP Content Type: JSON
Body: {
‘keyid’: ‘a296464ce012b8ab710a’,
‘num’: ‘33601020304’,
‘sms’: ‘Bonjour! Bienvenue sur iSendPro!’,
‘emetteur’: ‘isendpro’
}