Skip to main content

RevokeAutopilotSession

RevokeAutopilotSession revokes an Autopilot session.

Source: lit-autopilot.proto

gRPC

rpc RevokeAutopilotSession (RevokeAutopilotSessionRequest) returns (RevokeAutopilotSessionResponse);

REST

HTTP MethodPath
DELETE /v1/autopilot/sessions/{local_public_key}

Code Samples

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:8443'
const MACAROON_PATH = 'LIT_DIR/regtest/lit.macaroon'
const TLS_PATH = 'LIT_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('lit-autopilot.proto', loaderOptions);
const litrpc = grpc.loadPackageDefinition(packageDefinition).litrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new litrpc.Autopilot(GRPC_HOST, creds);
let request = {
local_public_key: <bytes>,
};
client.revokeAutopilotSession(request, function(err, response) {
console.log(response);
});
// Console output:
// {
// }

Messages

litrpc.RevokeAutopilotSessionRequest

Source: lit-autopilot.proto

FieldgRPC TypeREST TypeREST Placement
local_public_key
bytesstringpath

litrpc.RevokeAutopilotSessionResponse

Source: lit-autopilot.proto

note

This response has no parameters.