Skip to content

icon picker
Formulas

Example Formulas for usage with the Zapier Hook Pack

Catch Raw Hook

Catch Raw Hook without Body

RunActions(
ZapierHook("Your webhook URL of a Catch Raw Hook")
)

Catch Raw Hook with Body

RunActions(
ZapierHook(
"Your webhook URL of a Catch Raw Hook",
body: "body value to send to a Catch Raw Hook"
)
)

Catch Hook

Catch Hook with Body Params

RunActions(
ZapierHook(
"Your webhook URL of a Catch Hook",
bodyParams: List("body param identifier", "body param value")
)
)

Catch Hook with multiple Body Params

RunActions(
ZapierHook(
"Your webhook URL of a Catch Hook",
bodyParams: List(
"body param identifier", "body param value",
"another body param id", "another body param value"
)
)
)

Catch Hook with Query Params

RunActions(
ZapierHook(
"Your webhook URL of a Catch Hook",
queryParams: List("query param identifier", "query param value")
)
)

Catch Hook with multiple Query Params

RunActions(
ZapierHook(
"Your webhook URL of a Catch Hook",
queryParams: List(
"query param identifier", "query param value",
"another query param id", "another query param value"
)
)
)

Catch Hook with both Body Params and Query Params

RunActions(
ZapierHook(
"Your webhook URL of a Catch Hook",
bodyParams: List("body param identifier", "body param value"),
queryParams: List("query param identifier", "query param value")
)
)

Catch Hook with multiple Body Params and Query Params

RunActions(
ZapierHook(
"Your webhook URL of a Catch Hook",
bodyParams: List(
"body param identifier", "body param value",
"another body param id", "another body param value"
),
queryParams: List(
"query param identifier", "query param value",
"another query param id", "another query param value"
)
)
)

On Coda Data Types

Values in Coda can either be primitives, such as numbers and strings/text. Or more advanced data types such as dates, times, datetimes, and other custom column formats.
If the value you are sending is not a primitive, you may wish to use Value.SomeProperty or try the to convert the value to the displayed primitive.
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.