discord-link-api
An API that will communicate with the DB to link, update and search players by player tags and discord Ids.
First Things First!
const discord-link-api = require('discord-link-api');
Init
const client = new discord-link-api({
username: 'YourUsername',
password: 'YourPassword'
})
You can get your own username and password to access the DB by talking to ReverendMike#6969 in the server: https://discord.gg/Eaja7gJ
Link Players
client.link('#VQJPJY0L', '581442925611712513').then(res => console.log(res))
\\Response: { message: 'Success', statusCode: 200 }
Update Players
client.update('#VQJPJY0L', '581442925611712513').then(res => console.log(res))
\\Response: { message: 'Success', statusCode: 200 }
Search Player Tags by Discord ID
client.search('581442925611712513').then(res => console.log(res))
\\or
console.log(await client.search('581442925611712513'))
\\Response: ['#P8U2J0PV2', '#88QQ99CQQ', '#PYVVYVG8P', '#9GVJ2QRYG', '#YRQPVQQY2', '#2VRVVY0RQ', '#VQJPJY0L']
Returns an array of player tags for the discord ID
Wanna ask something about the API?
Contact me on Discord
How to access this API and use this module?
You can get your own username and password by contacting the owner of the API, ReverendMike#6969