Steam Verifier
NOTE: This endpoint is deprecated and is no longer supported.
Steam verification link Generator
POST
https://modiplex.com/api/getVerification
This endpoint allows you to get free cakes.
Request Body
Name
Type
Description
token
string
Your API token
userid
string
Discord ID of the user who is pending verification
returnUrl
string
Callback URL, user will be redirected there
{
authUrl: 'http://modiplex.com/auth?&=254287885585350666?&=36add3fde59fb2d7',
wielder: '3P_5cab2fc6dcf291dbc718bf365a209bd2_https://modiplex.com/',
token: '5cab2fc6dcf291dbc718bf365a209bd2'
}
NodeJS Example
axios.post('https://modiplex.com/api/getVerification', {
token: `SuperSecretAPIToken`,
userid: `254287885585350666`,
returnUrl: `https://modiplex.com/`
})
.then(res => {
console.log(res.data);
})
.catch(error => {
console.error(error)
})
Last updated
Was this helpful?