# Keymap (*keymap*) ## Overview Keymap for fields in a form ### Available Operations * [getKeyMap](#getkeymap) - Test triggers keymap ## getKeyMap Returns a keymap (supported/allowed fields) for the test trigger UI screen ### Example Usage ```typescript import { TestkubeSDK } from "testkube-sdk"; async function run() { const sdk = new TestkubeSDK(); const res = await sdk.keymap.getKeyMap(); if (res.statusCode == 200) { // handle response } } run(); ``` ### Parameters | Parameter | Type | Required | Description | | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | | `config` | [AxiosRequestConfig](https://axios-http.com/docs/req_config) | :heavy_minus_sign: | Available config options for making requests. | ### Response **Promise<[operations.GetKeyMapResponse](../../sdk/models/operations/getkeymapresponse.md)>** ### Errors | Error Object | Status Code | Content Type | | --------------- | --------------- | --------------- | | errors.SDKError | 4xx-5xx | */* |