Skip to main content
DELETE
/
api
/
v1
/
stripe
/
webhook
/
classic
/
{webhookId}
Delete webhook
curl --request DELETE \
  --url https://api.loopcrypto.xyz/api/v1/stripe/webhook/classic/{webhookId} \
  --header 'api-key: <api-key>' \
  --header 'entity-id: <api-key>'
{
  "totalResults": 100,
  "webhooks": [
    {
      "webhookId": "1234567890abcdef",
      "networkId": 1,
      "event": "CreatePayins",
      "postUrl": "https://example.com/webhook",
      "dateCreated": 1716211200
    }
  ]
}

Authorizations

api-key
string
header
required
entity-id
string
header
required

Path Parameters

webhookId
string
required

The unique identifier of the webhook to delete. This must be a valid webhook ID associated with your entity. Used to identify the specific webhook to delete

Response

Ok

totalResults
number<double>
required

The total count of webhooks matching the search criteria, regardless of page size or number.

Example:

100

webhooks
object[]
required

The list of webhooks.