SwiftGoma.SwiftGoma

Search endpoints

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

Shop Moderation

Delete shop

DELETE/api/v1/seller/shop/:id/admin

Deletes a shop on the platform's behalf. Staff-only.

Requires Authorization
ADMIN, SUPPORT only
Authenticated action

Path parameters

idstringrequired
Shop ID.

Body parameters

reasonstring
Internal note.
Request
curl --request DELETE \
  --url https://api.swiftgoma.com/api/v1/seller/shop/:id/admin \
  --header 'Authorization: Bearer <access_token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "reason": "<reason>"
}'
200Example response
{
  "success": true,
  "data": {
    "deleted": true
  }
}