▶️Authentication
var axios = require('axios');
var data = JSON.stringify({});
var config = {
headers: {
'Content-Type': 'application/json',
'X-API-KEY': '<Insert API Key>'
},
method: 'post',
url: 'https://api.paymagic.xyz/v1/rin/account/0x7328285B4435dbc51897DC2d900D21707d14253e/payout/disperse',
data : data
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
Last updated