Hi
I'm working on using customer data to auto generate a customized video. This will then be sent out in a marketing email. I have made the connection between Zapier and Tauvs and can automated the video generation process. However I cannot get the user input data to be sent or recived by Tauvs. The script is sent fine but the “Input_datad‘Name’] is never populated.
Being new to python I wanted to know if I'm doing something wrong.
import requests url = "https://tavusapi.com/v2/videos"
payload = {
"script": """Hi input_data"'Name'] Thank you for downloading""" ,
"replica_id": "r79e1c033f",
"video_name": "input_datae'Name']" }
headers = { "x-api-key": "*******************", "Content-Type": "application/json" }
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)