Asana · Schema

RemoveFollowersRequest

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow

Properties

Name Type Description
followers string 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-removefollowersrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoveFollowersRequest",
  "title": "RemoveFollowersRequest",
  "type": "object",
  "required": [
    "followers"
  ],
  "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": "string",
      "example": "521621,621373"
    }
  }
}