Best answer

Inconsistent wrapping between performlist test sample and an actual sample from perform rest hook trigger

  • 9 August 2023
  • 1 reply
  • 45 views

Badge +1

Hello

 

I am making a rest hook trigger using performList to give a test sample for the user to be able to map. I follow the same pattern as this example: https://github.com/zapier/zapier-platform/blob/main/examples/restHooks.js except my output field are dynamics so I must rely on a sample queried from my API.

when performList, Zapier wraps the sample queried from my API like so:

But does not wrap it evenly in perform 

Here is an history of Zap run between my trigger and a google sheet action that consists of creating a new row:

The mapping for COL$A, COL$B and COL$C here are based on the sample obtained from my performList hook.

But actually the data pushed by my rest hook trigger is:

Which I would expect to be mapped like the test sample, as a zapier post-process. (hidden from my cli-integration POV)

There is no longer the automatic zapier wrapping with fullfillmentValue property. My push is taken as is.

Therefore I get empty/blank value in my action app.

 

 

Thank you

icon

Best answer by wmarfil 10 August 2023, 16:55

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

Badge +1

Solved, it was actually the promise wrapping when using then on the promise:

I used await and now its ok.