curl --request POST \
--url https://api.example.com/admin/ism-list/remove-background-image \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 123,
"slug": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}Removes the background image from the ism list. You can pass in either an Image List ID or an Image List Slug.
curl --request POST \
--url https://api.example.com/admin/ism-list/remove-background-image \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 123,
"slug": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}