--- title: "system.tag.requestGroupExecution" description: "Sends a request to the specified tag group to execute now." --- # system.tag.requestGroupExecution > Sends a request to the specified tag group to execute now. This function is used in **Python Scripting**. ## Description ## Client Permission Restrictions This scripting function has no [Client Permission](../../../ignition-modules/vision/vision-project-properties/vision-project-properties.md#vision-permissions-properties) restrictions. ## Syntax `system.tag.requestGroupExecution(provider, tagGroup)` ### Parameters Type | Parameter | Description ------- | ------- | ------ String| `provider` | Name of the Tag Provider that the tag group is in. String| `tagGroup` | The name of the tag group to execute. ### Returns Nothing ### Scope Gateway, Vision Client, Perspective Session ## Code Examples ```python title="Example #1" # This example will use a Tag Provider called "default" and a Tag group called [default]. system.tag.requestGroupExecution("default", "[default]") ```