A callback interface developed by yourself, used for processing completion callbacks, If the request is successful, please return: success. You can create a webhook at website on https://webhook.site/ for test Request
Body Params application/json
{
"midi": [
{
"item_id": "123",
"status": "succeeded",
"midi_url": "xxxxxx"
}
]
}
Request Code Samples
curl --location 'https://your-domain.com/api/midi/callback' \
--header 'Authorization: Tempo-********************************-3w' \
--header 'Content-Type: application/json; charset=utf-8' \
--data '{
"midi": [
{
"item_id": "123",
"status": "succeeded",
"midi_url": "xxxxxx"
}
]
}'
Modified at 2026-08-31 08:27:45