Skip to main content
GET
/
api
/
verify
/
room
/
{verifyCode}
/
pdf
Download the sealed certificate (public)
curl --request GET \
  --url https://signsealship.com/api/verify/room/{verifyCode}/pdf
const 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

verifyCode
string
required

Response

The sealed certificate PDF.

The response is of type file.