Servers
Get Member Migrations
Servers
Get Member Migrations
Fetch member pulls.
GET
/
servers
/
{serverId}
/
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
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the VaultCord server
Response
200
application/json
resource retrieved
Example:
true
Random auto-increment ID
Example:
20
VaultCord server ID associated with members.
Example:
12
VaultCord account ID that owns the server
Example:
2
Starting timestamp in UTC DateTime
Example:
"2024-06-23 17:28:12"
Total time elapses, in hours:minutes:seconds
Example:
"00:00:02"
Members that were pulled successfully
Example:
0
Members that failed to be pulled due to being banned from your Discord guild.
Example:
0
Members that failed to be pulled due to Discord's max server limit.
Example:
0
Members that failed to be pulled due to unauthorized/deleted account.
Example:
0
Members that failed to be pulled due to unknown reasons.
Example:
0
Total number of members attempted to be pulled.
Example:
2
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
}
]
}