@shortcut/client
    Preparing search index...

    Interface CreateObjectiveParams

    interface CreateObjectiveParams {
        category_ids?: number[];
        completed_at_override?: string;
        description?: string;
        name: string;
        owner_ids?: string[];
        started_at_override?: string;
        state?: "done" | "in progress" | "to do";
        team_ids?: string[];
    }
    Index

    Properties

    category_ids?: number[]

    An array of IDs of Categories attached to the Objective.

    completed_at_override?: string

    A manual override for the time/date the Objective was completed.

    date-time

    description?: string

    The Objective's description.

    100000

    name: string

    The name of the Objective.

    1

    256

    owner_ids?: string[]

    An array of UUIDs for Members to add as Owners.

    started_at_override?: string

    A manual override for the time/date the Objective was started.

    date-time

    state?: "done" | "in progress" | "to do"

    The workflow state of the Objective.

    team_ids?: string[]

    An array of UUIDs for Teams to associate with the Objective.