Relay sealed-sender v3 envelope
POST
/api/v1/relay/sealed-v3
const url = 'http://localhost:3001/api/v1/relay/sealed-v3';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"bucket_id":"example","ciphertext":"example","nonce":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:3001/api/v1/relay/sealed-v3 \ --header 'Content-Type: application/json' \ --data '{ "bucket_id": "example", "ciphertext": "example", "nonce": "example" }'Relay a sealed-sender v3 (bucket-routed) envelope. Gated by ZENTALK_SEALED_SENDER_V3_ENABLED. SA-2026-ARCH P3-L.
Request Bodyrequired
Section titled “Request Bodyrequired”Sealed-sender v3 envelope
Media typeapplication/json
object
bucket_id
string
ciphertext
string
nonce
string
Examplegenerated
{ "bucket_id": "example", "ciphertext": "example", "nonce": "example"}Responses
Section titled “Responses”Accepted
Media typeapplication/json
object
key
additional properties
any
Examplegenerated
{}Bad Request
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}Internal Server Error
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}Service Unavailable
Media typeapplication/json
object
error
string
success
boolean
Examplegenerated
{ "error": "example", "success": true}