Hello! I am trying to get zapier to get a link from Salesforce via a webhook and post it to the Key resources tab as a link. Using Asana’s API explorer I am able to get it working. However when I translate it to Zapier it keeps giving me this error. To specific one parent. Total beginner here. Anyone know what I am missing?
In the “Data” portion of your Zapier webhook, wrap your existing JSON structure with a “data” element, so it has this shape - I think this should resolve it:
{
"data": {
"parent": "1234567890",
"resource_subtype": "external",
"name": "Test",
"url": "https://some-url-of-the-document"
}
}
2 Likes

