ThoughtSpot Custom Action API

The Custom Action API from ThoughtSpot — 4 operation(s) for custom action.

Documentation

Specifications

Other Resources

OpenAPI Specification

thoughtspot-custom-action-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: ThoughtSpot Public REST 10.1.0.cl Custom Action API
  version: '2.0'
servers:
- url: '{base-url}'
  variables:
    base-url:
      default: https://localhost:443
security:
- bearerAuth: []
tags:
- name: Custom Action
paths:
  /api/rest/2.0/customization/custom-actions:
    post:
      operationId: createCustomAction
      description: "\n <span class=\"since-beta-tag\">Version: 9.6.0.cl or later</span>\n\nCreates a custom action that appears as a menu action on a saved Answer or Liveboard visualization.\n\nRequires `DEVELOPER` (**Has Developer privilege**) or `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.\nIf [Role-Based Access Control (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your instance, the `DEVELOPER` (**Has developer privilege**) privilege is required.\n\n#### Usage Guidelines\n\nThe API lets you create the following types of custom actions:\n\n* URL-based action     \n  Allows pushing data to an external URL.\n* Callback action        \n  Triggers a callback to the host application and initiates a response payload on an embedded ThoughtSpot instance.\n\nBy default, custom actions are visible to only administrator or developer users. To make a custom action available to other users, and specify the groups in `group_identifiers`.\n\nBy default, the custom action is set as a _global_ action on all visualizations and saved Answers. To assign a custom action to specific Liveboard visualization, saved Answer, or Worksheet, set `visibility` to `false` in `default_action_config` property and specify the GUID or name of the object in `associate_metadata`.\n\nFor more information, see [Custom actions](https://developers.thoughtspot.com/docs/custom-action-intro).\n\n\n\n\n#### Endpoint URL\n"
      tags:
      - Custom Action
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomActionRequest'
        required: true
      parameters: []
      responses:
        '200':
          description: Custom action created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseCustomAction'
              examples:
                example_1:
                  value:
                    action_details:
                      CALLBACK:
                        reference: customaction
                    default_action_config:
                      visibility: true
                    id: 3d3cad0f-e57b-4faa-8e24-da596c727ee0
                    metadata_association: []
                    name: customactionsample
                    user_groups: []
        '400':
          description: Invalid request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_request:
                  summary: Invalid request
                  value:
                    error:
                      message:
                        code: 10002
                        incident_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        trace_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        debug: A custom action with the same name already exists. The custom action name must be unique.
        '401':
          description: Unauthorized access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unauthorized_access:
                  summary: Unauthorized access
                  value:
                    error:
                      message:
                        code: 10097
                        incident_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        trace_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        debug: Authentication required to create a custom action.
        '403':
          description: Forbidden access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                forbidden_access:
                  summary: Forbidden access
                  value:
                    error:
                      message:
                        code: 10023
                        incident_id_guid: c3d4e5f6-7890-1234-cdef-345678901234
                        trace_id_guid: c3d4e5f6-7890-1234-cdef-345678901234
                        debug: Insufficient privileges to create custom actions.
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unexpected_error:
                  summary: Unexpected error
                  value:
                    error:
                      message:
                        code: 10038
                        incident_id_guid: d4e5f678-9012-3456-defa-456789012345
                        trace_id_guid: d4e5f678-9012-3456-defa-456789012345
                        debug: Unexpected server error while creating the custom action.
  /api/rest/2.0/customization/custom-actions/{custom_action_identifier}/delete:
    post:
      operationId: deleteCustomAction
      description: "\n <span class=\"since-beta-tag\">Version: 9.6.0.cl or later</span>\n\nRemoves the custom action specified in the API request.\n\nRequires `DEVELOPER` (**Has Developer privilege**) or `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.\nIf [Role-Based Access Control (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your instance, the `DEVELOPER` (**Has developer privilege**) privilege is required.\n\n\n\n\n#### Endpoint URL\n"
      tags:
      - Custom Action
      parameters:
      - in: path
        name: custom_action_identifier
        required: true
        schema:
          type: string
        description: Unique ID or name of the custom action.
      responses:
        '204':
          description: Custom action is successfully deleted.
        '400':
          description: Invalid request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_request:
                  summary: Invalid request
                  value:
                    error:
                      message:
                        code: 10002
                        incident_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        trace_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        debug: Custom action with the specified identifier was not found.
        '401':
          description: Unauthorized access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unauthorized_access:
                  summary: Unauthorized access
                  value:
                    error:
                      message:
                        code: 10097
                        incident_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        trace_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        debug: Authentication required to delete a custom action.
        '403':
          description: Forbidden access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                forbidden_access:
                  summary: Forbidden access
                  value:
                    error:
                      message:
                        code: 10023
                        incident_id_guid: c3d4e5f6-7890-1234-cdef-345678901234
                        trace_id_guid: c3d4e5f6-7890-1234-cdef-345678901234
                        debug: Insufficient privileges to delete custom actions.
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unexpected_error:
                  summary: Unexpected error
                  value:
                    error:
                      message:
                        code: 10038
                        incident_id_guid: d4e5f678-9012-3456-defa-456789012345
                        trace_id_guid: d4e5f678-9012-3456-defa-456789012345
                        debug: Unexpected server error while deleting the custom action.
  /api/rest/2.0/customization/custom-actions/search:
    post:
      operationId: searchCustomActions
      description: "\n <span class=\"since-beta-tag\">Version: 9.6.0.cl or later</span>\n\nGets custom actions configured on the cluster.\n\nRequires `DEVELOPER` (**Has Developer privilege**) or `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.\nIf [Role-Based Access Control (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your instance, the `DEVELOPER` (**Has developer privilege**) privilege is required.\n\n\n\n\n#### Endpoint URL\n"
      tags:
      - Custom Action
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SearchCustomActionsRequest'
        required: true
      parameters: []
      responses:
        '200':
          description: Custom action search is successful.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ResponseCustomAction'
              examples:
                example_1:
                  value:
                  - action_details:
                      CALLBACK:
                        reference: LEDE
                    default_action_config:
                      visibility: true
                    id: c59262df-cf9e-4947-96fa-52d494688797
                    name: LEDE
        '400':
          description: Invalid request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_request:
                  summary: Invalid request
                  value:
                    error:
                      message:
                        code: 10002
                        incident_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        trace_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        debug: Custom action identifier is invalid or malformed.
        '401':
          description: Unauthorized access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unauthorized_access:
                  summary: Unauthorized access
                  value:
                    error:
                      message:
                        code: 10097
                        incident_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        trace_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        debug: Authentication required to search custom actions.
        '403':
          description: Forbidden access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unexpected_error:
                  summary: Unexpected error
                  value:
                    error:
                      message:
                        code: 10038
                        incident_id_guid: d4e5f678-9012-3456-defa-456789012345
                        trace_id_guid: d4e5f678-9012-3456-defa-456789012345
                        debug: Unexpected server error while searching custom actions.
  /api/rest/2.0/customization/custom-actions/{custom_action_identifier}/update:
    post:
      operationId: updateCustomAction
      description: "\n <span class=\"since-beta-tag\">Version: 9.6.0.cl or later</span>\n\nUpdates a custom action.\n\nRequires `DEVELOPER` (**Has Developer privilege**) or `ADMINISTRATION` (**Can administer ThoughtSpot**) privilege.\nIf [Role-Based Access Control (RBAC)](https://developers.thoughtspot.com/docs/rbac) is enabled on your instance, the `DEVELOPER` (**Has developer privilege**) privilege is required.\n\n#### Usage Guidelines\n\nThe API allows you to modify the following properties:\n\n* Name of the custom action\n* Action availability to groups\n* Association to metadata objects\n* Authentication settings for a URL-based action\n\nFor more information, see [Custom actions](https://developers.thoughtspot.com/docs/custom-action-intro).\n\n\n\n\n#### Endpoint URL\n"
      tags:
      - Custom Action
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomActionRequest'
        required: true
      parameters:
      - in: path
        name: custom_action_identifier
        required: true
        schema:
          type: string
        description: Unique ID or name of the custom action.
      responses:
        '204':
          description: Custom action updated successfully.
        '400':
          description: Invalid request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                invalid_request:
                  summary: Invalid request
                  value:
                    error:
                      message:
                        code: 10002
                        incident_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        trace_id_guid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                        debug: Custom action with the specified identifier was not found.
        '401':
          description: Unauthorized access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unauthorized_access:
                  summary: Unauthorized access
                  value:
                    error:
                      message:
                        code: 10097
                        incident_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        trace_id_guid: b2c3d4e5-f678-9012-bcde-f23456789012
                        debug: Authentication required to update a custom action.
        '403':
          description: Forbidden access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                forbidden_access:
                  summary: Forbidden access
                  value:
                    error:
                      message:
                        code: 10023
                        incident_id_guid: c3d4e5f6-7890-1234-cdef-345678901234
                        trace_id_guid: c3d4e5f6-7890-1234-cdef-345678901234
                        debug: Insufficient privileges to update custom actions.
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                unexpected_error:
                  summary: Unexpected error
                  value:
                    error:
                      message:
                        code: 10038
                        incident_id_guid: d4e5f678-9012-3456-defa-456789012345
                        trace_id_guid: d4e5f678-9012-3456-defa-456789012345
                        debug: Unexpected server error while updating the custom action.
components:
  schemas:
    CALLBACKInput:
      type: object
      properties:
        reference:
          type: string
          description: Reference name. By default, the value will be set to action name.
          nullable: true
      description: CALLBACK Custom Action Type
    URLInput:
      type: object
      properties:
        authentication:
          $ref: '#/components/schemas/AuthenticationInput'
          description: Authorization type for the custom action.
          nullable: true
        parameters:
          type: array
          items:
            $ref: '#/components/schemas/ParametersListItemInput'
          description: Query parameters for url.
          nullable: true
        url:
          type: string
          description: Request Url for the Custom action.
          nullable: true
        reference:
          type: string
          description: Reference name. By default the value will be set to action name
          nullable: true
      description: URL Custom Action Type
    Default_Action_Config_Search_Input:
      type: object
      properties:
        visibility:
          type: boolean
          description: 'Custom action is available on all visualizations. Earlier naming convention: LOCAL/GLOBAL. TRUE signifies GLOBAL for backward compatibility.'
          nullable: true
      description: Default Custom action configuration. This includes the custom action's visibility across all visualizations and Answers. By default, a custom action is added to all visualizations and Answers.
    Object_ID_And_Name:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the object.
          nullable: true
        name:
          type: string
          description: Name of the object.
          nullable: true
      description: The object representation with ID and Name.
    Basic_AuthInput:
      type: object
      properties:
        password:
          type: string
          description: Password for the basic authentication
          nullable: true
        username:
          type: string
          description: Username for the basic authentication
          nullable: true
      description: 'Basic Auth: Basic authentication involves sending a verified username and password with your request.'
    URLInputMandatory:
      type: object
      required:
      - url
      properties:
        authentication:
          $ref: '#/components/schemas/AuthenticationInput'
          description: Authorization type for the custom action.
          nullable: true
        parameters:
          type: array
          items:
            $ref: '#/components/schemas/ParametersListItemInput'
          description: Query parameters for url.
          nullable: true
        url:
          type: string
          description: Request Url for the Custom action.
        reference:
          type: string
          description: Reference name. By default the value will be set to action name
          nullable: true
      description: URL Custom Action Type
    Associate_Metadata_Input:
      type: object
      properties:
        action_config:
          $ref: '#/components/schemas/ActionConfigInput'
          description: Specify that the association is enabled for the metadata object
          nullable: true
        identifier:
          type: string
          description: Unique ID or name of the metadata.
          nullable: true
        type:
          type: string
          enum:
          - VISUALIZATION
          - ANSWER
          - WORKSHEET
          description: "  Type of metadata.\n  \n\nRequired if the name of the object is set as the identifier. This attribute is optional when the object GUID is specified as the identifier."
          nullable: true
    Default_action_config:
      type: object
      properties:
        visibility:
          type: boolean
          description: 'Custom action is available on all visualizations. Earlier , the naming convention: LOCAL/GLOBAL. TRUE signifies GLOBAL for backward compatibility.'
          nullable: true
      description: Default Custom action configuration. This includes the custom action's visibility across all visualizations and Answers. By default, a custom action is added to all visualizations and Answers.
    CALLBACKInputMandatory:
      type: object
      properties:
        reference:
          type: string
          description: Reference name. By default, the value will be set to action name.
          nullable: true
      description: CALLBACK Custom Action Type
    API_Key:
      type: object
      properties:
        key:
          type: string
          description: Enter your key name
          nullable: true
        value:
          type: string
          description: Enter you key value
          nullable: true
      description: With API key auth, you send a key-value pair to the API either in the request headers or query parameters.
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          nullable: true
    API_KeyInput:
      type: object
      properties:
        key:
          type: string
          description: Enter your key name
          nullable: true
        value:
          type: string
          description: Enter you key value
          nullable: true
      description: With API key auth, you send a key-value pair to the API either in the request headers or query parameters.
    Associate_Metadata_Input_Create:
      type: object
      required:
      - identifier
      properties:
        action_config:
          $ref: '#/components/schemas/ActionConfigInputCreate'
          description: Specify that the association is enabled for the metadata object
          nullable: true
        identifier:
          type: string
          description: Unique ID or name of the metadata.
        type:
          type: string
          enum:
          - VISUALIZATION
          - ANSWER
          - WORKSHEET
          description: "  Type of metadata.\n  \n\nRequired if the name of the object is set as the identifier. This attribute is optional when the object GUID is specified as the identifier."
          nullable: true
    Basic_Auth:
      type: object
      properties:
        password:
          type: string
          description: Password for the basic authentication
          nullable: true
        username:
          type: string
          description: Username for the basic authentication
          nullable: true
      description: 'Basic Auth: Basic authentication involves sending a verified username and password with your request.'
    ParametersListItem:
      type: object
      properties:
        key:
          type: string
          description: Key for the url query parameter
          nullable: true
        value:
          type: string
          description: Value for the url query parameter
          nullable: true
    CustomActionMetadataTypeInput:
      type: object
      required:
      - identifier
      properties:
        type:
          type: string
          enum:
          - VISUALIZATION
          - ANSWER
          - WORKSHEET
          description: "  Type of metadata object.\n  \n\nRequired if the name of the object is set as the identifier. This attribute is optional when the object GUID is specified as the identifier."
          nullable: true
        identifier:
          type: string
          description: Unique ID or name of the metadata object.
      description: MetadataType InputType used in Custom Action API's
    Action_details:
      type: object
      properties:
        CALLBACK:
          $ref: '#/components/schemas/CALLBACK'
          description: CALLBACK Custom Action Type
          nullable: true
        URL:
          $ref: '#/components/schemas/URL'
          description: URL Custom Action Type
          nullable: true
      description: Type and Configuration for Custom Actions
    CALLBACK:
      type: object
      properties:
        reference:
          type: string
          description: Reference name of the SDK. By default, the value will be set to action name.
          nullable: true
      description: CALLBACK Custom Action Type
    Action_Details_Input:
      type: object
      properties:
        CALLBACK:
          $ref: '#/components/schemas/CALLBACKInput'
          description: CALLBACK Custom Action Type
          nullable: true
        URL:
          $ref: '#/components/schemas/URLInput'
          description: URL Custom Action Type
          nullable: true
      description: Action details includes `Type` and configuration details of Custom Actions. Either Callback or URL is required.
    Default_Action_Config_Input_Create:
      type: object
      properties:
        visibility:
          type: boolean
          default: true
          description: 'Custom action is available on all visualizations. Earlier naming convention: LOCAL/GLOBAL. TRUE signifies GLOBAL for backward compatibility.

            Default: true'
          nullable: true
      description: Default Custom action configuration. This includes the custom action's visibility across all visualizations and Answers. By default, a custom action is added to all visualizations and Answers.
    Action_Details_Input_Create:
      type: object
      properties:
        CALLBACK:
          $ref: '#/components/schemas/CALLBACKInputMandatory'
          description: CALLBACK Custom Action Type
          nullable: true
        URL:
          $ref: '#/components/schemas/URLInputMandatory'
          description: URL Custom Action Type
          nullable: true
      description: 'Action details includes Type and Configuration for Custom Actions, either Callback or URL is required.

        When both callback and url are provided, callback would be considered'
    Default_Action_Config_Input:
      type: object
      properties:
        visibility:
          type: boolean
          description: 'Custom action is available on all visualizations. Earlier naming convention: LOCAL/GLOBAL. TRUE signifies GLOBAL for backward compatibility.'
          nullable: true
      description: Default Custom action configuration. This includes the custom action's visibility across all visualizations and Answers. By default, a custom action is added to all visualizations and Answers.
    AuthenticationInput:
      type: object
      properties:
        API_Key:
          $ref: '#/components/schemas/API_KeyInput'
          description: With API key auth, you send a key-value pair to the API either in the request headers or query parameters.
          nullable: true
        Basic_Auth:
          $ref: '#/components/schemas/Basic_AuthInput'
          description: 'Basic Auth: Basic authentication involves sending a verified username and password with your request.'
          nullable: true
        Bearer_Token:
          type: string
          description: Bearer tokens enable requests to authenticate using an access key.
          nullable: true
        No_Auth:
          type: string
          description: No authorization. If your request doesn't require authorization.
          nullable: true
      description: Authorization type for the custom action.
    ActionConfigInputCreate:
      type: object
      properties:
        position:
          type: string
          enum:
          - MENU
          - PRIMARY
          - CONTEXT_MENU
          default: MENU
          description: 'Position of the Custom action on the Metadata object. Earlier naming convention: context.'
          nullable: true
        visibility:
          type: boolean
          default: true
          description: 'Visibility of the metadata association with custom action. Earlier naming convention: enabled'
          nullable: true
      description: Specify that the association is enabled for the metadata object Default
    CreateCustomActionRequest:
      type: object
      properties:
        name:
          description: Name of the custom action. The custom action name must be unique.
          type: string
        action_details:
          description: Action details includes `Type` and Configuration data for Custom Actions, either Callback or URL is required.
          allOf:
          - $ref: '#/components/schemas/Action_Details_Input_Create'
        associate_metadata:
          description: Metadata objects to which the custom action needs to be associated.
          type: array
          items:
            $ref: '#/components/schemas/Associate_Metadata_Input_Create'
        default_action_config:
          description: Default Custom action configuration. This includes if the custom action is available on all visualizations. By default, a custom action is added to all visualizations and Answers.
          allOf:
          - $ref: '#/components/schemas/Default_Action_Config_Input_Create'
        group_identifiers:
          description: Unique ID or name of the groups that can view and access the custom action.
          type: array
          items:
            type: string
      required:
      - name
      - action_details
    URL:
      type: object
      required:
      - url
      properties:
        authentication:
          $ref: '#/components/schemas/Authentication'
          description: Authorization type for the custom action.
          nullable: true
        parameters:
          type: array
          items:
            $ref: '#/components/schemas/ParametersListItem'
          description: Query parameters for url.
          nullable: true
        url:
          type: string
          description: Request Url for the Custom action.
        reference:
          type: string
          description: Reference name of the SDK. By default, the value will be set to action name.
          nullable: true
      description: URL Custom Action Type
    ResponseCustomAction:
      type: object
      required:
      - action_details
      - default_action_config
      - id
      - name
      properties:
        action_details:
          $ref: '#/components/schemas/Action_details'
          description: '`Type` and configuration data for custom actions'
        default_action_config:
          $ref: '#/components/schemas/Default_action_config'
          description: Default custom action configuration. This includes the custom action's visibility across all visualizations and Answers. By default, a custom action is added to all visualizations and Answers.
        id:
          type: string
          description: Unique Id of the custom action.
        obj_id:
          type: string
          description: 'Custom object ID (obj_id) of the custom action, if one is set. <br/>  <span class="since-beta-tag">Version: 26.9.0.cl or later</span>'
          nullable: true
        metadata_association:
          type: array
          items:
            $ref: '#/components/schemas/Metadata_Association_Item'
          description: Metadata objects to assign the the custom action to.
          nullable: true
        name:
          type: string
          description: Unique name of the custom action.
        user_groups:
          type: array
          items:
            $ref: '#/components/schemas/Object_ID_And_Name'
          description: Unique ID or name of the User groups which are associated with the custom action.
          nullable: true
      description: Custom action details
    Authentication:
      type: object
      properties:
        API_Key:
          $ref: '#/components/schemas/API_Key'
          description: With API key auth, you send a key-value pair to the API either in the request headers or query parameters.
          nullable: true
        Basic_Auth:
          $ref: '#/components/schemas/Basic_Auth'
          description: 'Basic Auth: Basic authentication involves sending a verified username and password with your request.'
          nullable: true
        Bearer_Token:
          type: string
          description: Bearer tokens enable requests to authenticate using an access key.
          nullable: true
        No_Auth:
          type: string
          description: No authorization. If your request doesn't require authorization.
          nullable: true
      description: Authorization type for the custom action.
    Action_config:
     

# --- truncated at 32 KB (39 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/thoughtspot/refs/heads/main/openapi/thoughtspot-custom-action-api-openapi.yml