Skip to main content
POST
/
admin
/
sellers
/
{id}
/
suspend
curl -X POST 'http://localhost:9000/admin/sellers/sel_01HXYZABCDEF/suspend' \
  -H 'Authorization: Bearer <token>' \
  -H 'Content-Type: application/json' \
  -d '{"reason": "Policy violation"}'
{
  "seller": {
    "id": "sel_01HXYZABCDEF",
    "name": "Acme",
    "status": "suspended",
    "status_reason": "Policy violation",
    "updated_at": "2026-06-05T11:00:00.000Z"
  }
}
Sets the seller’s status to suspended, optionally recording a reason.

Path parameters

id
string
required
The seller’s ID.

Query parameters

fields
string
Comma-separated list of fields to include, prefix with +/- to add or remove from defaults.

Body parameters

reason
string
Reason for the suspension, stored in status_reason.

Response

seller
object
curl -X POST 'http://localhost:9000/admin/sellers/sel_01HXYZABCDEF/suspend' \
  -H 'Authorization: Bearer <token>' \
  -H 'Content-Type: application/json' \
  -d '{"reason": "Policy violation"}'
{
  "seller": {
    "id": "sel_01HXYZABCDEF",
    "name": "Acme",
    "status": "suspended",
    "status_reason": "Policy violation",
    "updated_at": "2026-06-05T11:00:00.000Z"
  }
}