Hi there!
I’m getting this error when i try to create a webhook using latest Asana PHP library:
This request is affected by the "new_goal_memberships" deprecation. Please visit this url for more info: https://forum.asana.com/t/launched-team-sharing-for-goals/378601\nAdding "new_goal_memberships" to your "Asana-Enable" or "Asana-Disable" header will opt in/out to this deprecation and suppress this warning.
Here is my request:
$webhook = $client->webhooks->createWebhook(array(
'resource' => $projectId,
'target' => $targetUrl,
'filters' => array(
array(
'resource_type' => 'task',
'action' => 'added'
),
array(
'resource_type' => 'task',
'action' => 'changed',
'fields' => ['completed']
)
)
));
Any clue of what might be happening? Because i think this request has nothing to do with new_goal_memberships.
Tnx a lot!!!