A
AsanaApi
Arcade Native

RemoveGoalFollowers

AsanaApi.RemoveGoalFollowers

Arcade Native Built and maintained by Arcade with full support
Supported by Arcade

Description

Remove followers from a specific goal in Asana.

Use this tool to remove followers from a goal in Asana. It returns the complete updated goal record with the followers removed. Ideal for managing team members involved with specific goals.

Input Parameters

{
  "parameters": [
    {
      "name": "goal_unique_id",
      "required": true,
      "inferrable": true,
      "description": "Globally unique identifier for the goal to remove followers from.",
      "value_schema": {
        "val_type": "string"
      }
    },
    {
      "name": "enable_pretty_output",
      "required": false,
      "inferrable": true,
      "description": "Enable pretty JSON output with line breaking and indentation. Useful for debugging; increases response time and size.",
      "value_schema": {
        "val_type": "boolean"
      }
    },
    {
      "name": "followers_to_remove",
      "required": false,
      "inferrable": true,
      "description": "An array of user identifiers to remove as followers. These can be \"me\", an email, or a user gid.",
      "value_schema": {
        "val_type": "array",
        "inner_val_type": "string"
      }
    },
    {
      "name": "included_optional_fields",
      "required": false,
      "inferrable": true,
      "description": "Comma-separated list of optional properties to include in the response for additional details.",
      "value_schema": {
        "val_type": "array",
        "inner_val_type": "string"
      }
    }
  ]
}

Output

{
  "description": "Response from the API endpoint 'removeFollowers'.",
  "value_schema": {
    "val_type": "json"
  },
  "available_modes": [
    "value",
    "error"
  ]
}