Skip to main content
POST
/
admin
/
sellers
/
{id}
curl -X POST 'http://localhost:9000/admin/sellers/sel_01HXYZABCDEF' \
  -H 'Authorization: Bearer <token>' \
  -H 'Content-Type: application/json' \
  -d '{"description": "Handmade goods.", "is_premium": true}'
{
  "seller": {
    "id": "sel_01HXYZABCDEF",
    "name": "Acme",
    "handle": "acme",
    "email": "hello@acme.co",
    "description": "Handmade goods.",
    "status": "open",
    "is_premium": true,
    "updated_at": "2026-06-03T14:20:00.000Z"
  }
}
Updates the seller and returns the updated record.

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

name
string
Display name of the seller.
handle
string
Unique URL-safe handle.
email
string
Contact email of the seller.
phone
string
Contact phone number.
description
string
Seller description.
URL of the seller’s logo.
banner
string
URL of the seller’s banner image.
website_url
string
The seller’s website URL.
external_id
string
ID of the seller in an external system.
status
string
One of open, pending_approval, suspended, terminated.
status_reason
string
Reason recorded with the status.
is_premium
boolean
Whether the seller is marked as premium.
closed_from
string
Start of a temporary store closure.
closed_to
string
End of a temporary store closure.
closure_note
string
Note shown while the store is closed.
metadata
object
Custom key-value data.
additional_data
object
Extra data passed to workflow hooks.

Response

seller
object
curl -X POST 'http://localhost:9000/admin/sellers/sel_01HXYZABCDEF' \
  -H 'Authorization: Bearer <token>' \
  -H 'Content-Type: application/json' \
  -d '{"description": "Handmade goods.", "is_premium": true}'
{
  "seller": {
    "id": "sel_01HXYZABCDEF",
    "name": "Acme",
    "handle": "acme",
    "email": "hello@acme.co",
    "description": "Handmade goods.",
    "status": "open",
    "is_premium": true,
    "updated_at": "2026-06-03T14:20:00.000Z"
  }
}