2. List config default

Get your list default config

Request

MethodURL

GET

api_url/get-list-config-default?page={page}&limit={limit}

ParamsValueDescription

page

number

page number of pagination

limit

number

number of profiles displayed

Example Request

Params

page

1

limit

10

Example Response

[
    {
        "id": 433,
        "name": "1",
        "isDefault": true,
        "config": {
            "os": [
                "win",
                "mac",
                "lin",
                "android"
            ],
            "browser": [
                "chrome"
            ],
            "name": "1",
            "id": 433,
            "StartUrl": null
        },
        "created_at": "2024-01-08T01:19:37.000000Z"
    },
    {
        "id": 427,
        "name": "3 browser",
        "isDefault": false,
        "config": {
            "browser": [
                "chrome",
                "edge",
                "opera"
            ],
            "name": "3 browser",
            "profileName": "fgh",
            "id": 427,
            "StartUrl": null
        },
        "created_at": "2024-01-06T04:49:52.000000Z"
    }
]

Last updated