clickup · Schema

UpdateGoalRequest

Request body for updating an existing Goal.

Properties

Name Type Description
name string The updated name of the Goal.
due_date integer Updated due date as Unix timestamp in milliseconds.
description string The updated description.
rem_owners array User IDs to remove as owners.
add_owners array User IDs to add as owners.
color string The updated hex color code.
View JSON Schema on GitHub

JSON Schema

clickup-updategoalrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateGoalRequest",
  "title": "UpdateGoalRequest",
  "type": "object",
  "description": "Request body for updating an existing Goal.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The updated name of the Goal."
    },
    "due_date": {
      "type": "integer",
      "format": "int64",
      "description": "Updated due date as Unix timestamp in milliseconds."
    },
    "description": {
      "type": "string",
      "description": "The updated description."
    },
    "rem_owners": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "User IDs to remove as owners."
    },
    "add_owners": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "User IDs to add as owners."
    },
    "color": {
      "type": "string",
      "description": "The updated hex color code."
    }
  }
}