Get Webhooks
This endpoint fetch list of all webhook registerd by team member.
GET
/api/v1.0/webhooks/{app_id}
curl \
--request GET 'https://openapi.niftypm.com/api/v1.0/webhooks/{app_id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"limit":"25","offset":"0"}'
Request examples
{
"limit": "25",
"offset": "0"
}
Response examples (200)
{
"webhooks": [
"string"
],
"hasMore": false
}