Attach an order
curl --request POST \
--url https://signsealship.com/api/rooms/{roomCode}/orders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orderCode": "the-orders-public-code",
"label": "Seller deed package"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({orderCode: 'the-orders-public-code', label: 'Seller deed package'})
};
fetch('https://signsealship.com/api/rooms/{roomCode}/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/rooms/{roomCode}/orders"
payload = {
"orderCode": "the-orders-public-code",
"label": "Seller deed package"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"ok": true,
"alreadyAttached": true
}{
"error": "<string>"
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}Endpoints
Attach an order
Attach an order to a room. Authorization is possession of the order’s public code. Idempotent — re-attaching succeeds with alreadyAttached: true. A room holds at most 50 orders.
POST
/
api
/
rooms
/
{roomCode}
/
orders
Attach an order
curl --request POST \
--url https://signsealship.com/api/rooms/{roomCode}/orders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orderCode": "the-orders-public-code",
"label": "Seller deed package"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({orderCode: 'the-orders-public-code', label: 'Seller deed package'})
};
fetch('https://signsealship.com/api/rooms/{roomCode}/orders', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/rooms/{roomCode}/orders"
payload = {
"orderCode": "the-orders-public-code",
"label": "Seller deed package"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"ok": true,
"alreadyAttached": true
}{
"error": "<string>"
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}Authorizations
Partner API key. Send as Authorization: Bearer sss_pk_....
Path Parameters
The room's bearer code (40 lowercase hex characters; the read endpoint accepts 24–64).
Body
application/json