Get a list of all registered webhooks.

External Documentation

To learn more, visit the Asana documentation.

Basic Parameters

ParameterDescription
Include FieldsSpecify which properties to include in the response.
ResourceThe ID of the resource to only get webhooks for.
Return All PagesAutomatically fetch all resources, page by page.
WorkspaceThe workspace that webhooks will be retrieved from.

Advanced Parameters

ParameterDescription
LimitResults per page.The number of objects to return per page. The value must be between 1 and 100.
OffsetAn offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an offset parameter to the next request. If an offset is not passed in, the API will return the first page of results.Note: You can only pass in an offset that was returned to you via a previously paginated request.

Example Output

{
	"data": [
		{
			"active": false,
			"created_at": "2012-02-22T02:06:58.147Z",
			"filters": [
				{
					"action": "changed",
					"fields": [
						"due_at",
						"due_on",
						"dependencies"
					],
					"resource_subtype": "milestone",
					"resource_type": "task"
				}
			],
			"gid": "12345",
			"last_failure_at": "2012-02-22T02:06:58.147Z",
			"last_failure_content": "500 Server Error\\n\\nCould not complete the request",
			"last_success_at": "2012-02-22T02:06:58.147Z",
			"resource": {
				"gid": "12345",
				"name": "Bug Task",
				"resource_type": "task"
			},
			"resource_type": "task",
			"target": "https://example.com/receive-webhook/7654"
		}
	]
}

Workflow Library Example

Get Webhooks with Asana and Send Results Via Email

Preview this Workflow on desktop