## Keepalive `client.computers.keepalive(stringid, RequestOptionsoptions?): ComputerKeepaliveResponse` **post** `/computers/{id}/keepalive` Extend the timeout for a computer session and verify it is still running ### Parameters - `id: string` ### Returns - `ComputerKeepaliveResponse = Record` ### Example ```typescript import Lightcone from '@tzafon/lightcone'; const client = new Lightcone({ apiKey: process.env['TZAFON_API_KEY'], // This is the default and can be omitted }); const response = await client.computers.keepalive('id'); console.log(response); ```