Discussions

Ask a Question
Back to All

How do I change the logo to Ai?

If I set the logo to anything, I get a "400 bad request", I am using axios and am trying to create options like this:

const options = {
method: 'POST',
headers: {
accept: 'application/json',
'content-type': 'application/json',
authorization: Bearer ${bearer}
},
data: JSON.stringify({
config: {
logo: {
url: "ai",
position: [
0,
0
]
},
stitch: true,
result_format: 'mp4'
},
source_url,
driver_url: bank://${driver_url}
})
};