curl --request GET \
--url https://api.vaultcord.com/servers/{serverId}/pulls \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 20,
"serverId": 12,
"accId": 2,
"startTime": "2024-06-23 17:28:12",
"totalTime": "00:00:02",
"successCount": 0,
"bannedCount": 0,
"tooManyGuildsCount": 0,
"invalidTokenCount": 0,
"failedCount": 0,
"totalCount": 2
}
]
}Fetch member pulls.
curl --request GET \
--url https://api.vaultcord.com/servers/{serverId}/pulls \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": 20,
"serverId": 12,
"accId": 2,
"startTime": "2024-06-23 17:28:12",
"totalTime": "00:00:02",
"successCount": 0,
"bannedCount": 0,
"tooManyGuildsCount": 0,
"invalidTokenCount": 0,
"failedCount": 0,
"totalCount": 2
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the VaultCord server
List of recent member pulls
true
Show child attributes
Random auto-increment ID
20
VaultCord server ID associated with members.
12
VaultCord account ID that owns the server
2
Starting timestamp in UTC DateTime
"2024-06-23 17:28:12"
Total time elapses, in hours:minutes:seconds
"00:00:02"
Members that were pulled successfully
0
Members that failed to be pulled due to being banned from your Discord guild.
0
Members that failed to be pulled due to Discord's max server limit.
0
Members that failed to be pulled due to unauthorized/deleted account.
0
Members that failed to be pulled due to unknown reasons.
0
Total number of members attempted to be pulled.
2
Was this page helpful?