Add a Tag to a Job

Overview

This action allows you to add a tag to a job.

Action Type

  • tag_job

Required Data

  • job_id The id of the job for which to add the tag.
  • tag_text The text of the tag to be added.

Optional Data

None.

Example Request Payload

{
  "type": "tag_job",
  "data": {
  	"job_id": 1820,
  	"tag_text": "This tag was added via API!"
  }
}

Usage

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

1076