Asana · Schema

TaskAddTagRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
tag string The tag's gid to add to the task.
View JSON Schema on GitHub

JSON Schema

asana-taskaddtagrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskAddTagRequest",
  "title": "TaskAddTagRequest",
  "type": "object",
  "properties": {
    "tag": {
      "description": "The tag's gid to add to the task.",
      "type": "string",
      "example": "13579"
    }
  },
  "required": [
    "tag"
  ]
}