input
Property
Description
# Retrieve value from payload
input.payload.some_value
# Check method on request
if (input.method == "POST"):
# Do something
# Retrieve customer ID from path params
cust_id = input.params["cust_id"]Last updated
Was this helpful?