mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
19 lines
510 B
YAML
19 lines
510 B
YAML
get:
|
|
description: Get all webhooks.
|
|
operationId: getWebhooks
|
|
responses:
|
|
'200':
|
|
description: Successful request
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
data:
|
|
$ref: '../../openapi.yaml#/components/schemas/Webhook'
|
|
'401':
|
|
$ref: '../../openapi.yaml#/components/responses/UnauthorizedError'
|
|
'404':
|
|
$ref: '../../openapi.yaml#/components/responses/NotFoundError'
|
|
tags:
|
|
- Webhooks |