Details about a board.

interface CreateBoard {
    admins?: {
        groups?: {
            name?: string;
            self?: string;
        }[];
        users?: {
            accountId?: string;
            active?: boolean;
            avatarUrls?: Agile.AgileModels.AvatarUrls;
            displayName?: string;
            self?: string;
        }[];
    };
    canEdit?: boolean;
    favourite?: boolean;
    id?: number;
    isPrivate?: boolean;
    location?: {
        avatarURI?: string;
        displayName?: string;
        name?: string;
        projectId?: number;
        projectKey?: string;
        projectName?: string;
        projectTypeKey?: string;
        userAccountId?: string;
        userId?: number;
    };
    name?: string;
    self?: string;
    type?: string;
}

Properties

admins?: {
    groups?: {
        name?: string;
        self?: string;
    }[];
    users?: {
        accountId?: string;
        active?: boolean;
        avatarUrls?: Agile.AgileModels.AvatarUrls;
        displayName?: string;
        self?: string;
    }[];
}

The users and groups who own the board.

Type declaration

  • Optional groups?: {
        name?: string;
        self?: string;
    }[]
  • Optional users?: {
        accountId?: string;
        active?: boolean;
        avatarUrls?: Agile.AgileModels.AvatarUrls;
        displayName?: string;
        self?: string;
    }[]
canEdit?: boolean

Whether the board can be edited.

favourite?: boolean

Whether the board is selected as a favorite.

id?: number

The ID of the board.

isPrivate?: boolean

Whether the board is private.

location?: {
    avatarURI?: string;
    displayName?: string;
    name?: string;
    projectId?: number;
    projectKey?: string;
    projectName?: string;
    projectTypeKey?: string;
    userAccountId?: string;
    userId?: number;
}

The container that the board is located in.

Type declaration

  • Optional avatarURI?: string
  • Optional displayName?: string
  • Optional name?: string
  • Optional projectId?: number
  • Optional projectKey?: string
  • Optional projectName?: string
  • Optional projectTypeKey?: string
  • Optional userAccountId?: string
  • Optional userId?: number
name?: string

The name of the board.

self?: string

The URL of the board.

type?: string

The type the board.