get: description: Retrieve a single webhook by unique identifier. operationId: getWebhook 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 patch: description: Update an existing webhook operationId: updateWebhook parameters: - $ref: "../../#/components/parameters/Fields" - $ref: "../../#/components/parameters/Meta" requestBody: content: application/json: schema: properties: name: description: The name of the webhook. type: string example: create articles method: description: Method used in the webhook. type: string example: POST url: description: The url of the webhook. type: string example: null status: description: The status of the webhook. type: string example: active data: description: If yes, send the content of what was done type: boolean example: true actions: description: The actions that triggers this webhook. example: null collections: description: The collections that triggers this webhook. example: null type: object responses: "200": description: Successful request content: application/json: schema: type: object properties: data: $ref: "../../#/components/schemas/Role" "401": $ref: "../../#/components/responses/UnauthorizedError" "404": $ref: "../../#/components/responses/NotFoundError" tags: - Webhooks delete: description: Delete an existing webhook operationId: deleteWebhook responses: "200": description: Successful request "401": $ref: "../../#/components/responses/UnauthorizedError" "404": $ref: "../../#/components/responses/NotFoundError" tags: - Webhooks parameters: - $ref: "../../#/components/parameters/UUId"