Subscription not triggering on Task resource
# support
r
posting on behalf of user: > Hey team - I had a question about an issue I’ve seen within the production project for medplum. When using subscriptions for Task Resource type, there are no events being triggered however all other subscriptions for the other resource types are triggering events without an issue. We have a similar setup for the Task resource type within the staging project and it sends data via our staging webhook without an issue. Are there any additional steps that may need to be taken on our end? Thanks!
Copy code
{
  "resourceType": "Subscription",
  "status": "active",
  "reason": "Webhook for Create Resource Type Task",
  "criteria": "Task",
  "channel": {
    "type": "rest-hook",
    "endpoint": "http://example.com",
    "payload": "application/json"
  },

}
Resolution: the
Task
resource was in a different project as
Subscription
, which meant that the
Task
was not visible to the Subscription
160 Views