根据特定组ID获取配置文件列表

使用API接口根据特定组ID获取配置文件列表

Request Url:

https://api.vmlogin.com/v1/tag/profile/list?token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&tagId=xxxxxx&type=mine&format=1

Request Type: GET

名称类型描述必传
tokenstring身份验证令牌
tagIdstring组ID(二选一)
tagstring组名称(二选一)
typestring类型,分享给我的配置文件: “share” ;
我的配置文件: “mine”
formatstring返回值的unix时间戳进行格式化: “1”
pagestring分页页码
limitstring每页显示多少条记录,默认50,最大100


Request

{
    "token": "66e9f73f3617c6afdc6768f7a61a58ae",
    "tagId": "348193",
    "type": "mine",
    "format": "1"
}

Response

{
    "data": [
        {
            "sid": "DEE64684-1EF9-40CF-80A5-C62390639800",
            "name": "myProfile",
            "lastUsedTime": "2022-05-16 11:48",
            "createTime": "2022-05-14 14:50"
        }
    ],
    "type": "mine",
    "tagId": "348193",
    "tag": "vmlogin test",
    "paging": {
        "totalCount": 1,
        "maxPage": 1,
        "currentPage": 1
    }
}


注:

(1)token请参考“查看/修改API Token”教程;

(2)tagId请参考“使用API接口获取组列表”教程。