Share via


O365ConnectorCardActionType type

Defines the possible types of actions in an O365 connector card.

  • ViewAction: Represents an action to view content.
  • OpenUri: Represents an action to open a URI.
  • HttpPOST: Represents an action to make an HTTP POST request.
  • ActionCard: Represents an action that opens a card with additional actions or inputs.
type O365ConnectorCardActionType =
  | "ViewAction"
  | "OpenUri"
  | "HttpPOST"
  | "ActionCard"