mjm
Member
As per QuestionScout support, Pabbly Connect is parsing the webhook from QuestionScout wrong.
This is what QuestionScout has to say about this:
This is what QuestionScout has to say about this:
Yes, they've also made an assumption to take a piece of information from our Webhook data structure and they are using it wrongly in this case. It's useful in other cases, but in this case, it can seem like a random number (which it inherently is), which makes things more confusing in your scenario.
You yourself can not make any changes to resolve this issue. If Pabbly, Integrately, or any other facilitator of 3rd party integrations would like to use our Webhook data structure correctly, they should have a structure such as the following:
data = [{
id: 'unique field id',
value: 'some value'
}, {
id: 'unique field id',
value: 'some value'
}]
data[0].value // wrong, index of field can change
data.find((obj) => obj.id === 'id of field that we need').value // correct, we are using unique ID
Feel free to reach out to either or both parties with this information so they can resolve this issue for you. I hope that's helpful!