Hierarchy

  • BaseFrameItem
    • FrameItem

Properties

boardId: string
createdAt?: Date

Date and time when the item was created.
Format: UTC, adheres to ISO 8601, includes a trailing Z offset.

createdBy?: CreatedBy
data?: FrameData
geometry?: Geometry
id: string
links?: WidgetLinks
modifiedAt?: Date

Date and time when the item was last modified.
Format: UTC, adheres to ISO 8601, includes a trailing Z offset.

modifiedBy?: ModifiedBy
position?: Position
style?: FrameStyle
type: string

Type of item that is returned.

Methods

  • Retrieves a list of items within a specific frame. A frame is a parent item and all items within a frame are child items.

    Required scope

    boards:read

    Rate limiting

    Level 2
    Returns an iterator which will automatically paginate and fetch all available items

    Summary

    Get items within frame

    Parameters

    • Optional query: Omit<undefined | {
          cursor?: string;
          limit?: string;
          type?: string;
      }, "cursor">

    Returns AsyncGenerator<WidgetItem, void, unknown>