A callback interface developed by yourself, used for processing completion callbacks, If the request is successful, please return: success.
Request
Body Params application/json
{
"stems": [
{
"item_id": "123",
"status": "succeeded",
"stems_url": "xxxxxx"
}
]
}
Request Code Samples
curl --location --request POST 'https://your-domain.com/api/stems/callback' \
--header 'Authorization: Tempo-********************************-3w' \
--header 'Content-Type: application/json; charset=utf-8' \
--data-raw '{
"stems": [
{
"item_id": "123",
"status": "succeeded",
"stems_url": "xxxxxx"
}
]
}'
Modified at 2026-01-29 10:33:43