Delete a subscription
curl --request DELETE \
--url https://signsealship.com/api/partner/webhooks/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://signsealship.com/api/partner/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/partner/webhooks/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text){
"ok": true
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}Endpoints
Delete a subscription
Delete a subscription. Accepts the partner API key or the dashboard session cookie.
DELETE
/
api
/
partner
/
webhooks
/
{id}
Delete a subscription
curl --request DELETE \
--url https://signsealship.com/api/partner/webhooks/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://signsealship.com/api/partner/webhooks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/partner/webhooks/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text){
"ok": true
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}