Mint a checkout session
curl --request POST \
--url https://signsealship.com/api/partner/orders/{code}/checkout \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://signsealship.com/api/partner/orders/{code}/checkout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/partner/orders/{code}/checkout"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"checkoutUrl": "<string>",
"requestId": "<string>"
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Endpoints
Mint a checkout session
Mint the Stripe hosted-checkout URL for a payable order. Minting never changes order state — state advances only via the verified Stripe webhook after payment clears. Rate limited with partner-write (60/min per key).
POST
/
api
/
partner
/
orders
/
{code}
/
checkout
Mint a checkout session
curl --request POST \
--url https://signsealship.com/api/partner/orders/{code}/checkout \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://signsealship.com/api/partner/orders/{code}/checkout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/partner/orders/{code}/checkout"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"checkoutUrl": "<string>",
"requestId": "<string>"
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
Partner API key. Send as Authorization: Bearer sss_pk_....
Headers
Optional. Retries carrying the same key replay the original response instead of acting twice. 8–255 characters; scope one key to one logical action.
Required string length:
8 - 255Path Parameters
The order's public code from the create response.