Issue Triggering APify Watch Actor Module via HTTP

Hello everyone,

I’m trying to trigger the Apify Watch Actor module in Make.com using an HTTP POST request. I’ve set up the webhook URL provided by the module, but I’m encountering an “Actor not found or access denied” error when sending the request. Interestingly, the module works fine when triggered manually.

I’ve checked the webhook URL, ensured I’m using the POST method.

Has anyone experienced similar problems or can provide guidance on properly configuring the HTTP request to trigger the Watch Actor module?

Thank you! @samliew


Solved : I was not passing the required payload to Http Request, Upon reading Apify documentation, i build the necessary payload, and it is working now .

here is the payload : {
“userId”:“{{16.userId}}” ,
“createdAt”:“{{16.pricingInfo.createdAt}}”,
“eventType”: “{{16.status}}”,
“eventData”: {
“actorId”:“{{16.actId}}”,
“actorRunId”:“{{16.id}}”
},
“resource”: {
“id”: “{{16.id}}”,
“actId”:“{{16.actId}}”,
“userId”:“{{16.userId}}”,
“startedAt”: “{{16.startedAt}}”,
“finishedAt”: “{{16.finishedAt}}”,
“status”: “{{16.status}}”
}
}

1 Like