1# Widget Event Capability Overview 2 3For dynamic ArkTS widgets, the [postCardAction](../reference/apis-arkui/js-apis-postCardAction.md#postcardaction) API is provided for interaction between the widget internal and the provider application. Currently, this API supports the router, message, and call events and can be called only in the widget. 4 5For static ArkTS widgets, the [FormLink](../reference/apis-arkui/arkui-ts/ts-container-formlink.md) component is provided for interaction between the widget internal and the provider application. 6 7## Dynamic Widget Event Capability 8 9 10Dynamic widget events are used in the following scenarios: 11- Router event: used to redirect to a UIAbility and update the widget content. 12- Call event: used to start a UIAbility in the background and update the widget content. 13- Message event: used to start a FormExtensionAbility, which then updates the widget content. 14 15## Static Widget Event Capability 16See [FormLink](../reference/apis-arkui/arkui-ts/ts-container-formlink.md). 17