const sendTokenWithTermii = async (message) => { const data = { "api_key" : Config.termiiToken, "message_type" : "NUMERIC", "to" : "+2348140850141", "from" : "Bigjara", "channel" : "dnd", "pin_attempts" : 10, "pin_time_to_live" : 5, "pin_length" : 4, "pin_placeholder" : "< 1234 >", "message_text" :message, "pin_type" : "NUMERIC" }; return await axios({ url : "https://api.ng.termii.com/api/sms/otp/send" , method : "post" , headers : { Accept : "application/json" } , data }) }