Get multiple webhooks
GET
/webhooks
Webhooks
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.asana.com/api/1.0/webhooks?workspace=1331'
Response Response Example
200 - Example 1
{
"data": [
{
"gid": "12345",
"resource_type": "task",
"active": false,
"resource": {
"gid": "12345",
"resource_type": "task",
"name": "Bug Task"
},
"target": "https://example.com/receive-webhook/7654",
"created_at": "2012-02-22T02:06:58.147Z",
"filters": [
{
"action": "changed",
"fields": [
"due_at",
"due_on",
"dependencies"
],
"resource_subtype": "milestone",
"resource_type": "task"
}
],
"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"
}
]
}
Request
Query Params
limit
integer
optional
The number of objects to return per page. The value must be between 1 and 100.
Example:
50
offset
string
optional
An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input 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:
eyJ0eXAiOJiKV1iQLCJhbGciOiJIUzI1NiJ9
workspace
string
required
Example:
1331
resource
string
optional
Example:
51648
Responses
Modified at 2022-09-13 02:00:32