Rotate the room link
curl --request POST \
--url https://signsealship.com/api/rooms/{roomCode}/rotate \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://signsealship.com/api/rooms/{roomCode}/rotate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/rooms/{roomCode}/rotate"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"roomCode": "<string>",
"roomUrl": "<string>"
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}Endpoints
Rotate the room link
Reissue the room’s bearer code. Every previously shared link dies instantly — the mitigation for a leaked or over-shared link.
POST
/
api
/
rooms
/
{roomCode}
/
rotate
Rotate the room link
curl --request POST \
--url https://signsealship.com/api/rooms/{roomCode}/rotate \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://signsealship.com/api/rooms/{roomCode}/rotate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://signsealship.com/api/rooms/{roomCode}/rotate"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"roomCode": "<string>",
"roomUrl": "<string>"
}{
"error": "A valid partner API key is required."
}{
"error": "<string>"
}