callBackUrl parameter to receive automatic notifications when generation completes, while still keeping GET /api/v1/jobs/recordInfo polling as a fallback.curl --location --request POST '/api/v1/jobs/createTask' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "runway-act-two",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"character": {
"type": "image",
"uri": "https://example.com/character.png"
},
"reference": {
"type": "video",
"uri": "https://example.com/reference-performance.mp4"
},
"ratio": "1280:720",
"body_control": true,
"expression_intensity": 3,
"seed": 12345
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_runway_act_two_1765166238716"
}
}