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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

serverId
integer
required

ID of the VaultCord server

Response

200
application/json
resource retrieved
success
boolean
Example:

true

data
object[]