import requests import json # URL of the webhook url = 'ENTER_THE_WEBHOOK_URL_HERE' # Parameters to be sent in the POST request data = { 'email': 'cagri@citizenshipper.com', 'first_name': 'Cagri' } # Headers for the POST request headers = { 'Content-Type': 'application/json' } # Send the POST request response = requests.post(url, headers=headers, data=json.dumps(data)) # Print the status code and response content print("Status Code:", response.status_code) print("Response:", response.text) ## Response if successful # Status Code: 200 # Response: {}