Issue Triggering APify Watch Actor Module via HTTP

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