---
title: "Get a list of sellers"
method: GET
path: "/iam/admin/sellers"
tags: ["Sellers"]
---

# Get a list of sellers

`GET /iam/admin/sellers`

Get a list of sellers.

Pass a value for the `limit` parameter in your request if you want retrieve a paginated result.
Otherwise API returns a list with all users without pagination.

You can combine parameters for pagination, filtering and ordering. All parameters are independent.

## Query parameters

- `limit` integer
- `offset` integer
- `ordering` string
- `id` number
- `id__in` string
- `id__contains` string
- `email` string, email
- `full_name` string
- `activated` true | false
- `deleted` 'true' | 'false'
- `reseller_name` string

## Response `200`

OK.

- union
  - object[] — Simple array without pagination
    - `id` integer, required — Seller's ID.
    - `email` string, email, required — Seller's email address.
    - `full_name` string, required — Seller's full name.
    - `phone` string — Seller's phone number.
    - `reseller_name` string, required — Seller's reseller's name.
    - `company` string, required — Seller's company.
    - `date_joined` string, required — Registration date.
    - `activated` boolean, required — Show the activation status of seller's account: - `true` – a seller has clicked on the activation link and has set up a password; - `false` – a seller hasn't clicked on the activation link.
    - `deleted` boolean, required — Show the deletion status of seller's account: - `true` – a seller has been deleted; - `false` – a seller is active.
  - SellersPaginatedArray
    - `count` number — Total number of users
    - `next` string — URL to the next users slice
    - `previous` string — URL to the previous users slice
    - `results` object[]
      - `id` integer, required — Seller's ID.
      - `email` string, email, required — Seller's email address.
      - `full_name` string, required — Seller's full name.
      - `phone` string — Seller's phone number.
      - `reseller_name` string, required — Seller's reseller's name.
      - `company` string, required — Seller's company.
      - `date_joined` string, required — Registration date.
      - `activated` boolean, required — Show the activation status of seller's account: - `true` – a seller has clicked on the activation link and has set up a password; - `false` – a seller hasn't clicked on the activation link.
      - `deleted` boolean, required — Show the deletion status of seller's account: - `true` – a seller has been deleted; - `false` – a seller is active.

## Other responses

- `401` — Authentication credentials were not provided or given token not valid for any token type.

---

[API](https://skmtc.net/g-core/apis/gcore-openapi.md) · [All operations](https://skmtc.net/g-core/apis/gcore-openapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/g-core/gcore-openapi/revisions/09e652815095/schema)
