callBackUrl parameter to receive automatic notifications when generation completes, while still keeping GET /api/v1/jobs/recordInfo polling as a fallback.curl --location '/api/v1/jobs/createTask' \
--header 'Content-Type: application/json' \
--data '{
"model": "seedream-v5-lite-edit",
"callBackUrl": "https://your-domain.com/api/callback",
"input": {
"prompt": "Edit the reference image into a futuristic cityscape at sunset with neon lights",
"reference_images": [
"https://example.com/reference-image-1.jpg",
"https://example.com/reference-image-2.jpg"
],
"aspect_ratio": "square_1_1",
"seed": 12345,
"enable_safety_checker": true
}
}'{
"code": 200,
"msg": "success",
"data": {
"taskId": "task_seedream_5_lite_edit_1765166238716"
}
}