Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
To create the videos, we need the project_id, which is the unique identifier for a user's project in our systems.
Body
The payload is a list of dictionaries, where all the parameters required for video generation have to provided along with a unique_id
.
Eg.
[
{
"names": "Manash",
"unique_id": "abc123"
},
{
"names": "Manash2",
"unique_id": "cba321"
}
]
In the example
, we have used the tags: names
and unique_id
, depending on the case the individual query parameters would change.
Response
Successful Response
The response is of type CreateVideoIndividialResponse · object[]
.