Asana · Schema

TaskAddFollowersRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
followers array An array of strings identifying users. These can either be the string "me", an email, or the gid of a user.
View JSON Schema on GitHub

JSON Schema

asana-taskaddfollowersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaskAddFollowersRequest",
  "title": "TaskAddFollowersRequest",
  "type": "object",
  "properties": {
    "followers": {
      "description": "An array of strings identifying users. These can either be the string \"me\", an email, or the gid of a user.",
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "13579",
        "321654"
      ]
    }
  },
  "required": [
    "followers"
  ]
}