curl --request PUT \
--url https://api.speedsellx.io/v2/public/webhooks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"url": "<string>",
"token": "<string>",
"product_id": 123,
"order_payment_approved": true,
"order_payment_pending": true,
"order_payment_failed": true,
"order_payment_refunded": true,
"order_subscription_approved": true,
"order_subscription_pending": true,
"order_subscription_failed": true,
"order_subscription_refunded": true,
"order_subscription_canceled": true,
"order_subscription_trial_started": true
}
'import requests
url = "https://api.speedsellx.io/v2/public/webhooks/{id}"
payload = {
"url": "<string>",
"token": "<string>",
"product_id": 123,
"order_payment_approved": True,
"order_payment_pending": True,
"order_payment_failed": True,
"order_payment_refunded": True,
"order_subscription_approved": True,
"order_subscription_pending": True,
"order_subscription_failed": True,
"order_subscription_refunded": True,
"order_subscription_canceled": True,
"order_subscription_trial_started": True
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: '<string>',
token: '<string>',
product_id: 123,
order_payment_approved: true,
order_payment_pending: true,
order_payment_failed: true,
order_payment_refunded: true,
order_subscription_approved: true,
order_subscription_pending: true,
order_subscription_failed: true,
order_subscription_refunded: true,
order_subscription_canceled: true,
order_subscription_trial_started: true
})
};
fetch('https://api.speedsellx.io/v2/public/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.speedsellx.io/v2/public/webhooks/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'url' => '<string>',
'token' => '<string>',
'product_id' => 123,
'order_payment_approved' => true,
'order_payment_pending' => true,
'order_payment_failed' => true,
'order_payment_refunded' => true,
'order_subscription_approved' => true,
'order_subscription_pending' => true,
'order_subscription_failed' => true,
'order_subscription_refunded' => true,
'order_subscription_canceled' => true,
'order_subscription_trial_started' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.speedsellx.io/v2/public/webhooks/{id}"
payload := strings.NewReader("{\n \"url\": \"<string>\",\n \"token\": \"<string>\",\n \"product_id\": 123,\n \"order_payment_approved\": true,\n \"order_payment_pending\": true,\n \"order_payment_failed\": true,\n \"order_payment_refunded\": true,\n \"order_subscription_approved\": true,\n \"order_subscription_pending\": true,\n \"order_subscription_failed\": true,\n \"order_subscription_refunded\": true,\n \"order_subscription_canceled\": true,\n \"order_subscription_trial_started\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.speedsellx.io/v2/public/webhooks/{id}")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"<string>\",\n \"token\": \"<string>\",\n \"product_id\": 123,\n \"order_payment_approved\": true,\n \"order_payment_pending\": true,\n \"order_payment_failed\": true,\n \"order_payment_refunded\": true,\n \"order_subscription_approved\": true,\n \"order_subscription_pending\": true,\n \"order_subscription_failed\": true,\n \"order_subscription_refunded\": true,\n \"order_subscription_canceled\": true,\n \"order_subscription_trial_started\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.speedsellx.io/v2/public/webhooks/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"url\": \"<string>\",\n \"token\": \"<string>\",\n \"product_id\": 123,\n \"order_payment_approved\": true,\n \"order_payment_pending\": true,\n \"order_payment_failed\": true,\n \"order_payment_refunded\": true,\n \"order_subscription_approved\": true,\n \"order_subscription_pending\": true,\n \"order_subscription_failed\": true,\n \"order_subscription_refunded\": true,\n \"order_subscription_canceled\": true,\n \"order_subscription_trial_started\": true\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": 123,
"user_id": 123,
"url": "<string>",
"token": "<string>",
"product_id": 123,
"active": true,
"order_payment_approved": true,
"order_payment_pending": true,
"order_payment_failed": true,
"order_payment_refunded": true,
"order_subscription_approved": true,
"order_subscription_pending": true,
"order_subscription_failed": true,
"order_subscription_refunded": true,
"order_subscription_canceled": true,
"order_subscription_trial_started": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}{
"status": "error",
"error": "unauthenticated"
}{
"status": "error",
"error": "insufficient_scope"
}{
"status": "error",
"error": "not_found"
}{
"status": "error",
"error": "idempotency_in_progress"
}{
"message": "<string>",
"errors": {}
}Substituir webhook
Substitui o destino, o conjunto de eventos e o escopo de produto de uma assinatura da conta da chave. Um token ausente mantém o que está gravado. O campo active não é lido aqui: silenciar entregas é o que a rota de toggle faz, então uma edição de rotina não muda isso por acidente. Uma assinatura de outra conta responde 404 sem escrever nada. Exige o escopo webhooks:create e o header Idempotency-Key.
curl --request PUT \
--url https://api.speedsellx.io/v2/public/webhooks/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--data '
{
"url": "<string>",
"token": "<string>",
"product_id": 123,
"order_payment_approved": true,
"order_payment_pending": true,
"order_payment_failed": true,
"order_payment_refunded": true,
"order_subscription_approved": true,
"order_subscription_pending": true,
"order_subscription_failed": true,
"order_subscription_refunded": true,
"order_subscription_canceled": true,
"order_subscription_trial_started": true
}
'import requests
url = "https://api.speedsellx.io/v2/public/webhooks/{id}"
payload = {
"url": "<string>",
"token": "<string>",
"product_id": 123,
"order_payment_approved": True,
"order_payment_pending": True,
"order_payment_failed": True,
"order_payment_refunded": True,
"order_subscription_approved": True,
"order_subscription_pending": True,
"order_subscription_failed": True,
"order_subscription_refunded": True,
"order_subscription_canceled": True,
"order_subscription_trial_started": True
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
url: '<string>',
token: '<string>',
product_id: 123,
order_payment_approved: true,
order_payment_pending: true,
order_payment_failed: true,
order_payment_refunded: true,
order_subscription_approved: true,
order_subscription_pending: true,
order_subscription_failed: true,
order_subscription_refunded: true,
order_subscription_canceled: true,
order_subscription_trial_started: true
})
};
fetch('https://api.speedsellx.io/v2/public/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.speedsellx.io/v2/public/webhooks/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'url' => '<string>',
'token' => '<string>',
'product_id' => 123,
'order_payment_approved' => true,
'order_payment_pending' => true,
'order_payment_failed' => true,
'order_payment_refunded' => true,
'order_subscription_approved' => true,
'order_subscription_pending' => true,
'order_subscription_failed' => true,
'order_subscription_refunded' => true,
'order_subscription_canceled' => true,
'order_subscription_trial_started' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.speedsellx.io/v2/public/webhooks/{id}"
payload := strings.NewReader("{\n \"url\": \"<string>\",\n \"token\": \"<string>\",\n \"product_id\": 123,\n \"order_payment_approved\": true,\n \"order_payment_pending\": true,\n \"order_payment_failed\": true,\n \"order_payment_refunded\": true,\n \"order_subscription_approved\": true,\n \"order_subscription_pending\": true,\n \"order_subscription_failed\": true,\n \"order_subscription_refunded\": true,\n \"order_subscription_canceled\": true,\n \"order_subscription_trial_started\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.speedsellx.io/v2/public/webhooks/{id}")
.header("Idempotency-Key", "<idempotency-key>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"<string>\",\n \"token\": \"<string>\",\n \"product_id\": 123,\n \"order_payment_approved\": true,\n \"order_payment_pending\": true,\n \"order_payment_failed\": true,\n \"order_payment_refunded\": true,\n \"order_subscription_approved\": true,\n \"order_subscription_pending\": true,\n \"order_subscription_failed\": true,\n \"order_subscription_refunded\": true,\n \"order_subscription_canceled\": true,\n \"order_subscription_trial_started\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.speedsellx.io/v2/public/webhooks/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"url\": \"<string>\",\n \"token\": \"<string>\",\n \"product_id\": 123,\n \"order_payment_approved\": true,\n \"order_payment_pending\": true,\n \"order_payment_failed\": true,\n \"order_payment_refunded\": true,\n \"order_subscription_approved\": true,\n \"order_subscription_pending\": true,\n \"order_subscription_failed\": true,\n \"order_subscription_refunded\": true,\n \"order_subscription_canceled\": true,\n \"order_subscription_trial_started\": true\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": 123,
"user_id": 123,
"url": "<string>",
"token": "<string>",
"product_id": 123,
"active": true,
"order_payment_approved": true,
"order_payment_pending": true,
"order_payment_failed": true,
"order_payment_refunded": true,
"order_subscription_approved": true,
"order_subscription_pending": true,
"order_subscription_failed": true,
"order_subscription_refunded": true,
"order_subscription_canceled": true,
"order_subscription_trial_started": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}{
"status": "error",
"error": "unauthenticated"
}{
"status": "error",
"error": "insufficient_scope"
}{
"status": "error",
"error": "not_found"
}{
"status": "error",
"error": "idempotency_in_progress"
}{
"message": "<string>",
"errors": {}
}Authorizations
A chave de API da conta, no formato sk_{modo}_{prefixo}.{segredo}.
Headers
Chave única da operação. Obrigatória em toda requisição que altera dados; sem ela a resposta é 422 idempotency_key_required. Um reenvio com a mesma chave e o mesmo corpo repete a resposta guardada.
255Path Parameters
Body
Body of PUT /v2/public/webhooks/{id}. A replace of the reconfigurable set: destination, event set and product scope all take the submitted value.
It does not accept active, although the source api did. Muting a
subscription is what the toggle endpoint is for, so a routine edit cannot
silence deliveries as a side effect; the panel's own update follows the same
rule. A caller sending it gets no error and no change.
2048255Response
ApiWebhookResource
Show child attributes
Show child attributes