- Welcome 👋
- Get Started
- Create Your First App
- Authorization
- Webhooks
- Conditional Webhooks
- Security Considerations
- Multi-Language Support
- Responses
- Pagination
- Rate Limiting
- Versioning
- Change Log
- Support
- APIs
- Orders
- Order Status
- Order Histories
- Order Tags
- Order Invoice
- Order Reservations
- Order Items
- Products
- Product Options
- Product Quantity
- Product Variants
- Product Tags
- Product Images
- Product Option Values
- Abandoned Carts
- Customer Groups
- Customers
- Digitals Product
- Categories
- Exports
- Shipments
- Shipping Companies
- Shipping Zones
- Shipping Rules
- Countries
- Product Option Templates
- Taxes
- Coupons
- Affiliates
- Order Assignment
- Special Offers
- Transactions
- Payments
- Settlements
- Settings
- Merchant
- Brands
- Reviews
- Branches
- Currencies
- SEO
- Cities
- DNS Records
- Languages
- Employees
- Advertisements
- Webhooks
- Custom URLs
- Loyalty Points
- Webhooks - Store Events
Deactivate Webhook
Production
Production
DELETE
https://api.salla.dev/admin/v2/webhooks/unsubscribe
Webhooks
Last modified:2025-03-04 08:27:02
Note
url
and/or id
in the query parameters.Alert
url
will delete all registered webhooks to this URL.Scopes
webhooks.read_write
- Webhooks Read & WriteRequest
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Query Params
id
numberÂ
optional
requiredif
no URL passed. List of Webhook IDs can be found here.url
stringÂ
optional
requiredif
no ID is passed.Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.salla.dev/admin/v2/webhooks/unsubscribe?id&url'
Responses
🟢202Object Deleted Successfully.
application/json
Body
status
numberÂ
optional
success
booleanÂ
optional
data
object (DeleteSuccess)Â
optional
message
stringÂ
required
code
numberÂ
required
Example
{
"status": 202,
"success": true,
"data": {
"message": "The Object has been removed successfully",
"code": 202
}
}
🟠404Record Not Found
🟠422Error Validation
🟠401Unauthorized
Modified at 2025-03-04 08:27:02