Download the sealed certificate (public)
curl --request GET \
--url https://signsealship.com/api/verify/room/{verifyCode}/pdfconst options = {method: 'GET'};
fetch('https://signsealship.com/api/verify/room/{verifyCode}/pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/verify/room/{verifyCode}/pdf"
response = requests.get(url)
print(response.text)"<string>"Endpoints
Download the sealed certificate (public)
Streams the sealed Closing Passport certificate PDF. The verify code is the bearer.
GET
/
api
/
verify
/
room
/
{verifyCode}
/
pdf
Download the sealed certificate (public)
curl --request GET \
--url https://signsealship.com/api/verify/room/{verifyCode}/pdfconst options = {method: 'GET'};
fetch('https://signsealship.com/api/verify/room/{verifyCode}/pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/verify/room/{verifyCode}/pdf"
response = requests.get(url)
print(response.text)"<string>"Path Parameters
Response
The sealed certificate PDF.
The response is of type file.