change body on webhook post method

Hey everybody!

This time Im needing a way to change te body request in a post method using workflow weebhook. need to use some properties to build the request boddy and place them in specific named variables.

“chatPlatform”: “whatsapp”,

“chatChannelNumber”: “your_phone”,

etc…

Is this possible, been reading for a while a everybody says no and im a quit fear tho hehe

Have a great weekend!!

Hi @rechavar ,

You can not change the post body in a webhook action. You can however use the custom code action with Axios and make a post request that way. This could look something like this:

const axios = require('axios')

exports.main = async (event, callback) => {
 const firstname = event.inputFields['firstname']

 try {
 axios({
 method: 'post',
 headers: {
 'accept': 'application/json',
 'content-type': 'application/json',
 },
 url: '<YOUR-URL>',
 data: JSON.stringify({
 chatPlatform: 'whatsapp',
 chatChannelNumber: 'your_phone'
 }),
 json: true,
 })
 .then((response) => {
 console.log(response.data)
 })
 .catch((error) => {
 console.log(error)
 })
 } catch (err) {
 console.error(err)
 throw err
 }

 callback({
 outputFields: {
 firstname: firstname,
 },
 })
}