# Get a list of browser profiles

Endpoint: POST /api/env/page
Version: 1.0.0

## Request fields (application/json):

  - `envName` (string)
    Filter by environment (profile) name. Empty string returns all.

  - `groupId` (integer)
    Filter by group ID. Use 0 for ungrouped profiles.
    Example: 0

  - `envId` (string)
    Filter by specific environment ID.
If provided, other filters may be ignored.
    Example: 1869988538611834880

  - `pageNo` (integer)
    Page number (1-based index).
    Example: 1

  - `pageSize` (integer)
    Number of items per page.
    Example: 10

## Response 200 fields (application/json):

  - `code` (integer, required)

  - `msg` (null, required)

  - `data` (object, required)

  - `data.total` (string, required)

  - `data.current` (string, required)

  - `data.pages` (string, required)

  - `data.dataList` (array, required)

  - `data.dataList.id` (string)
    Browser profile ID

  - `data.dataList.envName` (string)
    Profile name

  - `data.dataList.groupId` (string)
    Group ID

  - `data.dataList.groupName` (string)
    Group name. `null` when the profile is ungrouped

  - `data.dataList.tagInfos` (array)
    Tag details. Empty array when no tags are assigned

  - `data.dataList.tagInfos.id` (string, required)
    Tag ID

  - `data.dataList.tagInfos.tagName` (string, required)
    Tag name

  - `data.dataList.envRemark` (string)
    Profile remark

  - `data.dataList.proxyId` (string)
    Proxy ID. `0` means no proxy

  - `data.dataList.proxy` (object)
    Proxy configuration. `null` when no proxy is assigned

  - `data.dataList.proxy.id` (string)
    Proxy ID

  - `data.dataList.proxy.proxyName` (string)
    Proxy name

  - `data.dataList.proxy.proxyType` (integer)
    Proxy type

  - `data.dataList.proxy.proxyProvider` (integer)
    Proxy provider

  - `data.dataList.proxy.proxyCategoryType` (integer)
    Proxy category type

  - `data.dataList.proxy.proxyCheckStatus` (integer)
    Proxy check status

  - `data.dataList.proxy.proxyStatus` (integer)
    Proxy status

  - `data.dataList.proxy.proxyIp` (string)
    Proxy IP address

  - `data.dataList.proxy.exportIp` (string)
    Export IP address

  - `data.dataList.proxy.countryCode` (string)
    Country code

  - `data.dataList.proxy.expiryTime` (string)
    Expiry timestamp

  - `data.dataList.proxy.username` (string)
    Proxy username

  - `data.dataList.proxy.password` (string)
    Proxy password

  - `data.dataList.proxy.refreshUrl` (string)
    Proxy refresh URL

  - `requestId` (string, required)

