Function seeing axios.post as GET request

Hi @colbyfayock, I tried invoking your function using insomnia and if you check your function logs, it does show the httpMethod as POST. Could you try using the object method like below?

axios({
  method: 'post',
  url: 'http://bit.ly/2mTM3nY',
  data: <body here>
}) 

Let me know if that works.