1. List profile

Returns a list of profiles

Api public

Example Request

Params

Key
Value
Description

is_local

true/false

false: Show cloud profiles, true: Show local profiles

Body

{
    "orderName": 0,      //sắp xếp theo name, gồm các giá trị 0 1 2
    "orderLastOpen": 0,
    "page": 1,     //chọn trang hiển thị
    "limit": 10,   // Số profile hiển thị trong 1 trang
    "search": "",  //Nhập tên profile cần tìm , có thể để trống
    "status": "",      // id của status , có thể để trống
    "date_range": [
        "",
        ""
    ],   //Nhập khoảng ngày tạo profile theo định dạng yyyy-mm-dd
   
    "folder_id": []   //Nhập id của folder, có thể để trống
    
}

Example Response

 "data": {
        "type": "success",
        "title": "Load successfully",
        "content": [
            {
                "uuid": "992bd6f1-0a4c-40b2-88c0-d6ae54db7347",
                "directory": "2023/05/15",
                "file_name": "e332938226517443e5ca72b5d269a0a6.zip",
                "can_be_running": true,
                "proxy": "",
                "created_at": "2023-05-15T07:28:07.000000Z",
                "created_at_diff": "43 minutes ago",
                "id": 20165,
                "folder_id": 532,
                "check_open": 1,
                "name": "15 - 5",
                "version": 112,
                "browser_type": "hidemium",
                "os": "mac",
                "note": "",
                "last_open": "2023-05-15 14:30:53",
                "last_open_diff": "41 minutes ago",
                "transfer": "",
                "source_version": null,
                "shares_role": false,
                "shared_uuid": "",
                "status": null,
                "status_chil": 0,
                "tags": [],
                "status_id": null,
                "listing": null
            }
        ]
    },
    "links": {
        "first": "https://v2-api.multibrowser.io/v1/browser/list?page=1",
        "last": "https://v2-api.multibrowser.io/v1/browser/list?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "path": "https://v2-api.multibrowser.io/v1/browser/list?page=1",
        "per_page": "10",
        "to": 1,
        "total": 1
    }
}

Last updated