Self Referencing Webhook Timeout
I'm trying to create a workflow that will update a custom object based off a form submission.
I can get this to work when I try it through a straight REST call from a program like ARC, so I know I have my components created correctly.
Here's my webhook:
Custom Header:
Header: Content-Type
Value: application/json
Webhook
URL = https://529-FGG-715.mktorest.com/rest/v1/customobjects/interests_c.json?access_token=ACCESS_TOKEN
Request Type: POST
Template:
{
"action":"createOnly",
"lookupField":"email",
"partitionName":"USCAN-US",
"input":[
{
"leadID":"{{lead.ID}}",
"productID":"{{lead.Flex Field 1}}",
"productName":"{{lead.Flex Field 2}}"
}
]
}
Request Token Encoding: None
Response Type JSON
When I trigger a campaign that calls the webhook, I get this error on the lead record. I have no clue why it's timing out. Hoping someone can help.
Webhook Id: | 19 |
Webhook Name: | Multiple Product Interest Population |
Request Type: | http_post |
url: | 529-FGG-715.mktorest.com/rest/v1/customobjects/interests_c.json?access_token=ACCESS_TOKEN |
payload: | { "action":"createOnly", "lookupField":"email", "partitionName":"USCAN-US", "input":[ { "leadID":"1455478", "productID":"3", "productName":"Product Interest 3" } ] } |
Error Type: | Operation timeout. |
Error String: | connect() timed out! |
Lead ID: | 1455478 |