mirror of
https://github.com/directus/directus.git
synced 2026-02-15 22:35:16 -05:00
20 lines
459 B
YAML
20 lines
459 B
YAML
get:
|
|
description: Get all webhooks.
|
|
operationId: getWebhooks
|
|
responses:
|
|
"200":
|
|
description: Successful request
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
data:
|
|
$ref: "#/components/schemas/Webhook"
|
|
"401":
|
|
$ref: "#/components/responses/UnauthorizedError"
|
|
"404":
|
|
$ref: "#/components/responses/NotFoundError"
|
|
tags:
|
|
- Webhooks
|