API Gets a List of Profiles Based on a Specific Group ID

Gets a list of profiles based on a specific group ID using the API interface:

Request Url:

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

Request Type: GET

NameTypeDescriptionrequired
tokenstringAuthentication tokentrue
tagIdstringGroup ID (either-or)false
tagstringGroup Name (either-or)false
typestringType, shared profile with me: “share” ; Mine: “mine”false
formatstringFormat Unix timestamps: “1”false
pagestringThe page numberfalse
limitstringThe number of results displayed on each page is 50 by defaultfalse

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
    }
}


Note:

(1) For token, please refer to the "View/Change the API Token" tutorial.

(2) For tagId, please refer to the "Get group list using the API interface" tutorial.