Example Zapier REST hook Perform code
const recipe = { | |
id: bundle.cleanedRequest.id, | |
name: bundle.cleanedRequest.name, | |
directions: bundle.cleanedRequest.directions, | |
style: bundle.cleanedRequest.style, | |
authorId: bundle.cleanedRequest.authorId, | |
createdAt: bundle.cleanedRequest.createdAt | |
}; | |
return [recipe]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Not sure how I would send the data for it to show up like this. For example how would I send the
id
for it to show up asbundle.cleanedRequest.id
? In the body? As a parameter?