Add a Tag to an Application

Overview

This action allows you to add a tag to an application.

Action Type

  • tag_app

Required Data

  • app_id The id of the application for which to add the tag.
  • tag_text The text of the tag to be added.

Optional Data

None.

Example Request Payload

{
  "type": "tag_app",
  "data": {
  	"app_id": 3640,
  	"tag_text": "This tag was added via API!"
  }
}

Usage

Upon execution of the action, you will see the tag applied to the application:

1078