Discussions
Is my webhook code wrong
over 5 years ago by Ahmad Awan
Hey so I am trying to get webhooks to work, I get a response but the webhook array is empty, anything wrong in my code...
'''
key = 'key56789'
resource = 'webhooks'
url = "https://%s:@api.followupboss.com/v1/%s" % (key, resource)
header = {
'x-system': 'name1234',
'x-system-key': 'key1234'
}
param = {
}
response = requests.request("GET", url, headers=header)
print(response.text)
'''