SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Storefront

Delete hero slide

DELETE/api/v1/storefront/admin/hero-slides/:id

Deletes a hero slide. Admin-only.

Requires Authorization
ADMIN only
Authenticated action

Path parameters

idstringrequired
Hero slide ID.
Request
curl --request DELETE \
  --url https://api.swiftgoma.com/api/v1/storefront/admin/hero-slides/:id \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "deleted": true
  }
}