Javascript
import Runloop from '@runloop/api-client'; const client = new Runloop({ bearerToken: 'My Bearer Token', }); const response = await client.devboxes.createSSHKey('id'); console.log(response.id);
{ "id": "<string>", "url": "<string>", "ssh_private_key": "<string>" }
Create an SSH key for a Devbox to enable remote access.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The Devbox ID.
OK
The response is of type object.
object
Was this page helpful?