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
Name | Type | Description | required |
token | string | Authentication token | true |
tagId | string | Group ID (either-or) | false |
tag | string | Group Name (either-or) | false |
type | string | Type, shared profile with me: “share” ; Mine: “mine” | false |
format | string | Format Unix timestamps: “1” | false |
page | string | The page number | false |
limit | string | The number of results displayed on each page is 50 by default | false |
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.