Dreambooth
Delete Run
Dreambooth
Delete Run
DELETE
/dreambooth/run
Authorization*
x-api-key*
curl --request DELETE \
--url https://api.mirageml.com/dreambooth/run \
--header 'Authorization: <authorization>' \
--header 'x-api-key: <x-api-key>' \
--data '{
"project-id": "<project-id>",
"run-id": "<run-id>"
}'
Description
Deletes the output images for a dreambooth inference
Body Data
project-idrequired
string
Project id of the project
run-idrequired
string
Run id of the project
curl -X 'DELETE' \
'https://api.mirageml.com/dreambooth/run' \
-H 'accept: application/json' \
-H 'Authorization: <AUTHORIZATION>' \
-H 'x-api-key: <API_KEY>'
{
"statusCode": 200,
"body": {
"message": "Deleted inference output images",
"files": []
}
}
curl -X 'DELETE' \
'https://api.mirageml.com/dreambooth/run' \
-H 'accept: application/json' \
-H 'Authorization: <AUTHORIZATION>' \
-H 'x-api-key: <API_KEY>'
{
"statusCode": 200,
"body": {
"message": "Deleted inference output images",
"files": []
}
}