calling function url
Hi,
i already done the serveless function
i have a code right now like this
import requests
url = 'https://function/'
data = {'nom': 'X Y'}
response = requests.post(url, json=data)
print(response.status_code)
print(response.json())
how can i run it into vapi
i already done the serveless function
i have a code right now like this
import requests
url = 'https://function/'
data = {'nom': 'X Y'}
response = requests.post(url, json=data)
print(response.status_code)
print(response.json())
how can i run it into vapi