@shortcut/client
    Preparing search index...

    Interface CreateProject

    interface CreateProject {
        abbreviation?: string;
        color?: string;
        created_at?: string;
        description?: string;
        external_id?: string;
        follower_ids?: string[];
        iteration_length?: number;
        name: string;
        start_time?: string;
        team_id: number;
        updated_at?: string;
    }
    Index

    Properties

    abbreviation?: string

    The Project abbreviation used in Story summaries. Should be kept to 3 characters at most.

    63

    color?: string

    The color you wish to use for the Project in the system.

    css-color

    1

    ^#[a-fA-F0-9]{6}$

    created_at?: string

    Defaults to the time/date it is created but can be set to reflect another date.

    date-time

    description?: string

    The Project description.

    100000

    external_id?: string

    This field can be set to another unique ID. In the case that the Project has been imported from another tool, the ID in the other tool can be indicated here.

    128

    follower_ids?: string[]

    An array of UUIDs for any members you want to add as Owners on this new Epic.

    iteration_length?: number

    The number of weeks per iteration in this Project.

    int64

    name: string

    The name of the Project.

    1

    128

    start_time?: string

    The date at which the Project was started.

    date-time

    team_id: number

    The ID of the team the project belongs to.

    int64

    updated_at?: string

    Defaults to the time/date it is created but can be set to reflect another date.

    date-time