Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 1x 1x 1x 1x 1x 1x | const axios = require('axios')
class InsuranceRiskEval{
apiKey;
baseURL='https://vz1z84zy6f.execute-api.us-west-2.amazonaws.com/assess_risk/'
#headers={
'Content-Type': 'application/json'
}
constructor(apiKey , url){
this.apiKey= apiKey
}
async assesRisk(data){
try{
let response = await axios.post(this.baseURL,data,this.#headers)
return response.data['_id'];
}catch(err){
throw Error(err.message)
}
}
async getRiskEvalResult(id){
try{
await axios.get(this.baseURL+id,this.#headers)
}catch(err){
throw Error(err.message)
}
}
}
module.exports = InsuranceRiskEval;
// export {RiskEval} |