> ## Documentation Index
> Fetch the complete documentation index at: https://developer.sodacards.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DeleteWebhook

> DeleteWebhook removes a webhook endpoint.



## OpenAPI

````yaml /api-reference/sodacards.yaml delete /v1/webhooks/{id}
openapi: 3.1.0
info:
  title: SODACARDS Developer API
  description: Sell gift cards and game top-ups from your own systems.
  version: 1.0.0
servers:
  - url: https://api.sodacards.com
security:
  - ApiKeyAuth: []
tags:
  - name: PublicAPIService
    description: >-
      PublicAPIService is the public developer API a reseller calls with an API
      key.
       It is served as REST (via HTTP transcoding) so developers use GET /v1/... and
       curl, and its OpenAPI 3.1 spec is generated from this one file. Every method is
       authenticated by the API-key gateway that fronts it.
paths:
  /v1/webhooks/{id}:
    delete:
      tags:
        - PublicAPIService
      summary: DeleteWebhook
      description: DeleteWebhook removes a webhook endpoint.
      operationId: PublicAPIService_DeleteWebhook
      parameters:
        - name: id
          in: path
          description: id is the webhook endpoint to remove.
          required: true
          schema:
            type: string
            title: id
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/sodacards.devpublic.v1.DeleteWebhookResponse
components:
  schemas:
    sodacards.devpublic.v1.DeleteWebhookResponse:
      type: object
      title: DeleteWebhookResponse
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: Your API key, prefixed sc_live_ or sc_test_.
      name: X-API-Key
      in: header

````