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

fetch('https://signsealship.com/api/partner/webhooks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://signsealship.com/api/partner/webhooks"

headers = {"cookie": "__Host-session="}

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

print(response.text)
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "url": "<string>",
    "topics": [],
    "active": true,
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

__Host-session
string
cookie
required

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

Response

Your subscriptions.

id
string<uuid>
url
string
topics
enum<string>[]
Available options:
passport.sealed,
room.order_attached,
room.passport_sealed
active
boolean
createdAt
string<date-time>