Skip to main content
PUT
/
members
/
pull
/
{serverId}
cURL
curl --request PUT \
  --url https://api.vaultcord.com/members/pull/{serverId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "guildid": "1218273540147646535",
  "roleid": "1022118100830802004",
  "userId": "720820224877789204",
  "limit": 100,
  "skipDuplicate": false
}'
{
  "success": true,
  "message": "Pull started, see email for status"
}

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

Body

application/json

Details for Discord you want pulled into

guildid
string

Discord snowflake ID for the guild.

Example:

"1218273540147646535"

roleid
string

(Optional) Discord snowflake ID for the verified role.

Example:

"1022118100830802004"

userId
string

(Optional) Discord snowflake ID for specific member/user.

Example:

"720820224877789204"

limit
integer

(Optional) Only pull X members

Example:

100

skipDuplicate
boolean

Skip duplicate members already in Discord server. Good if you are selling/trading members.

Example:

false

Response

Successfully started member pull

success
boolean
Example:

true

message
string
Example:

"Pull started, see email for status"

I