Appearance
Get SMS Report GET METHOD
js
const apikey = "1W3N4KHD28YCBL8M7WDG0L11N73FP28JKD5SOKD2D4KXJKCKMF"
const config = {
method: "GET",
headers: {
Authorization: `Bearer ${apikey}`,
Accept: "application/json",
},
};
url = `https://api.icsms.net/smsgateway/api/crud/status/${randomspecial}/`
fetch(url, config)
.then(res=>{
res.json()
}).then(data=>{
console.log(data)
})