GetEditor
client.editors.retrieve(EditorRetrieveParams { id } body, RequestOptionsoptions?): EditorRetrieveResponse { editor }
POST/gitpod.v1.EditorService/GetEditor
Gets details about a specific editor.
Use this method to:
- View editor information
- Get editor configuration
Examples
-
Get editor details:
Retrieves information about a specific editor.
id: "d2c94c27-3b76-4a42-b88c-95a85e392c68"
GetEditor
import Gitpod from '@gitpod/sdk';
const client = new Gitpod({
bearerToken: process.env['GITPOD_API_KEY'], // This is the default and can be omitted
});
const editor = await client.editors.retrieve({ id: 'd2c94c27-3b76-4a42-b88c-95a85e392c68' });
console.log(editor.editor);{
"editor": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"installationInstructions": "installationInstructions",
"name": "name",
"urlTemplate": "urlTemplate",
"alias": "alias",
"iconUrl": "iconUrl",
"shortDescription": "shortDescription",
"versions": [
{
"version": "version"
}
]
}
}Returns Examples
{
"editor": {
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"installationInstructions": "installationInstructions",
"name": "name",
"urlTemplate": "urlTemplate",
"alias": "alias",
"iconUrl": "iconUrl",
"shortDescription": "shortDescription",
"versions": [
{
"version": "version"
}
]
}
}