Skip to main content
DELETE
/
api
/
partner
/
webhooks
/
{id}
Delete a subscription (dashboard session)
curl --request DELETE \
  --url https://signsealship.com/api/partner/webhooks/{id} \
  --cookie __Host-session=
const options = {method: 'DELETE', headers: {cookie: '__Host-session='}};

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 = {"cookie": "__Host-session="}

response = requests.delete(url, headers=headers)

print(response.text)
{
  "ok": true
}
{
"error": "<string>"
}

Authorizations

__Host-session
string
cookie
required

SignSealShip dashboard login session cookie. Used only by the /api/partner/webhooks routes.

Path Parameters

id
string<uuid>
required

The subscription id.

Response

Deleted.

ok
boolean