API 参考
/- 浏览器
- 开放 API
/
Get a list of browser pro...
Query the browser profiles visible to the authenticated member, page by page.
Paging starts at 1. dataList is an empty array when there are no results.
Security
OpenApiBearer
Profile sequence numbers. Up to 100 items.
Example:
[ 1001 ]
Profile ID. The request also accepts the field alias id.
Example:"1800000000000001"
Keyword filter. Matches profile name, group name, tag name, and remark.
Example:"marketing"
POST
curl -i -X POST \
https://api.morelogin.com/env/page \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"pageNo": 1,
"pageSize": 10,
"keyword": "marketing"
}'Success
Operation request ID. This field may be present when the request passes through the API gateway.
Example:"1d4f3ea968664593860b94b35d4ebf5e"
Response
- ProxyInfoDetail
- null
{ "code": 0, "msg": null, "requestId": "1d4f3ea968664593860b94b35d4ebf5e", "data": { "total": "1", "current": "1", "pages": "1", "dataList": [ … ] } }