GetActionResponse: {
    appId?: string;
    appKey?: string;
    appName?: string;
    description?: string;
    display_name?: string;
    enabled?: boolean;
    logo?: string;
    name?: string;
    parameters?: {
        properties?: {
            [key: string]: unknown;
        };
        required?: string[];
        title?: string;
        type?: string;
    };
    response?: {
        properties?: {
            [key: string]: unknown;
        };
        required?: string[];
        title?: string;
        type?: string;
    };
}[]

Type declaration

  • Optional appId?: string

    The unique identifier of the app associated with the action.

  • Optional appKey?: string

    The key of the app associated with the action.

  • Optional appName?: string

    The name of the app associated with the action.

  • Optional description?: string

    A description of the action.

  • Optional display_name?: string

    The display name of the action.

  • Optional enabled?: boolean

    A boolean indicating whether the action is enabled or not.

  • Optional logo?: string

    The URL of the logo of the app associated with the action.

  • Optional name?: string

    The name of the action.

  • Optional parameters?: {
        properties?: {
            [key: string]: unknown;
        };
        required?: string[];
        title?: string;
        type?: string;
    }

    An object describing the input parameters of the action.

    • Optional properties?: {
          [key: string]: unknown;
      }

      An object containing the properties of the input parameters.

      • [key: string]: unknown
    • Optional required?: string[]

      An array of required parameter names.

    • Optional title?: string

      The title of the input parameters.

    • Optional type?: string

      The type of the input parameters (e.g., "object").

  • Optional response?: {
        properties?: {
            [key: string]: unknown;
        };
        required?: string[];
        title?: string;
        type?: string;
    }

    An object describing the response of the action.

    • Optional properties?: {
          [key: string]: unknown;
      }

      An object containing the properties of the response.

      • [key: string]: unknown
    • Optional required?: string[]

      An array of required response field names.

    • Optional title?: string

      The title of the response.

    • Optional type?: string

      The type of the response (e.g., "object").