curl --request POST \
--url https://api.infinitecreator.com/v1/tasks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"assets": [
{
"url": "<string>",
"type": "image",
"model": "basic-1"
}
],
"agents": [
{
"id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"picture": "<string>",
"designation": "<string>",
"phones": [
{
"number": "<string>",
"type": "office",
"region": "US"
}
],
"emails": [
{
"address": "[email protected]"
}
],
"licenses": [
{
"number": "<string>",
"state": "<string>"
}
],
"video_options": {
"ratio": "1920:1080",
"components": {
"intro": {
"enabled": false,
"background_color": "<string>",
"primary_font": "Euclid Circular A",
"secondary_font": "Euclid Circular A",
"logo": "<string>",
"font_color": "<string>"
},
"specs": {
"enabled": false,
"background_color": "<string>",
"primary_font": "Euclid Circular A",
"secondary_font": "Euclid Circular A",
"font_color": "<string>"
},
"business_card": {
"enabled": false,
"background_color": "<string>",
"primary_font": "Euclid Circular A",
"secondary_font": "Euclid Circular A",
"font_color": "<string>",
"picture_shape": "square",
"logo": "<string>"
},
"outro": {
"enabled": false,
"url": "<string>"
},
"overlay": {
"enabled": false,
"primary_font": "Euclid Circular A",
"logo": "<string>"
},
"office": {
"enabled": false,
"logo": "<string>"
}
},
"create_preview": false,
"metadata": {}
},
"offices": [
{
"name": "<string>",
"address": {
"street": "<string>",
"state": "<string>",
"city": "<string>",
"postal_code": "<string>"
},
"phone_number": {
"number": "<string>",
"type": "office",
"region": "US"
}
}
]
}
],
"address": {
"street": "<string>",
"state": "<string>",
"city": "<string>",
"postal_code": "<string>"
},
"bedrooms": 1,
"bathrooms": 1,
"half_bathrooms": 1,
"interior_square_footage": 2
}
'