PUT
/
members
/
pull
/
{serverId}
curl --request PUT \
  --url https://api.vaultcord.com/members/pull/{serverId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "guildid": "1218273540147646535",
  "roleid": "JFcVvRVdnZb2QRa6DpY3LPwPMTpDi5X6",
  "userId": "MTIxODI3MzA5MzI5ODk0NjA0OA.nt02aR.e7Uyh_D3GggylpuFFwbt2E5NR4c-lUoqFrM9fK",
  "limit": 100
}'
{
  "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
member JSON to be created
guildid
string

Discord snowflake ID for the guild.

Example:

"1218273540147646535"

roleid
string

(Optional) Discord snowflake ID for the verified role.

Example:

"JFcVvRVdnZb2QRa6DpY3LPwPMTpDi5X6"

userId
string

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

Example:

"MTIxODI3MzA5MzI5ODk0NjA0OA.nt02aR.e7Uyh_D3GggylpuFFwbt2E5NR4c-lUoqFrM9fK"

limit
integer

(Optional) Only pull X members

Example:

100

Response

200
application/json
SUCCESS_MESSAGE
success
boolean
Example:

true

message
string
Example:

"Pull started, see email for status"