Discussions
On Creator Plan and Avatar Watermark is Displayed when Triggered via an API
I am on the Creator Plan. When I generate a manual Avatar video I can disable the watermark in the bottom right hand corner of the output video. However, when I trigger an Avatar video via an API, the Heygen watermark is displayed in the bottom right corner of the video. I am setting the "test" parameter to false. How can I eliminate the Heygen watermark from API-triggered avatar videos.
I have listed my AOI call below.
{{
{
"video_inputs": [
{
"character": {
"type": "avatar",
"avatar_id": $json.avatar_id,
"avatar_style": "normal",
"scale": 1.0,
"offset": {
"x": 0.0,
"y": 0.0
},
"matting": true
},
"voice": {
"type": "text",
"input_text": $("AI Agent").item.json.output,
"voice_id": $json.voice_id,
"speed": 1.1,
"pitch": 50,
"emotion": "Excited"
},
"background": {
"type": "video",
"url": $json.background_video_url,
"play_style": "loop",
"fit": "cover"
}
}
],
"dimension": {
"width": 720,
"height": 1280
},
"aspect_ratio": "9:16",
"caption": false,
"title": "n8n TEST AVATAR",
"test": false
}
}}