cURL
curl --request GET \ --url https://api.example.com/admin/sellers/{id} \ --header 'Authorization: Bearer <token>'
{ "seller": { "id": "<string>", "store_status": "active", "name": "<string>", "handle": "<string>", "description": "<string>", "photo": "<string>", "email": "<string>", "phone": "<string>", "address_line": "<string>", "city": "<string>", "state": "<string>", "postal_code": "<string>", "country_code": "<string>", "tax_id": "<string>", "members": [ {} ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } }
Retrieves a specific seller by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the seller to retrieve.
Comma-separated fields to include in the response.
OK
Seller object
Show child attributes