Skip to content

Remove the hero image for a deal

DELETE
/api/canvas/{deal_id}/hero-image
curl --request DELETE \
--url https://example.com/api/canvas/example/hero-image \
--header 'Authorization: Bearer <token>'

Remove the hero image artifact and clear session cache.

deal_id
required
Deal Id
string

Successful Response

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}