Last updated 14 hours ago
Attestation value to annotate
OK
Creation timestamp, set by the plugin
Human-readable description for the attestation value
const response = await fetch('/v1/auth/ratls/annotations/{key}', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/auth/ratls/annotations/?list=true', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": { "keys": [] } }
const response = await fetch('/v1/auth/ratls/annotations/{key}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": { "created": 0, "key": "text", "value": "text" } }
const response = await fetch('/v1/auth/ratls/annotations', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "created": 0, "key": "text", "value": "text" }), }); const data = await response.json();