Jira.js - Jira Cloud API library
    Preparing search index...

    Interface GetComments

    interface GetComments {
        expand?: string;
        issueIdOrKey: string;
        maxResults?: number;
        orderBy?: string;
        startAt?: number;
    }
    Index

    Properties

    expand?: string

    Use expand to include additional information about comments in the response. This parameter accepts renderedBody, which returns the comment body rendered in HTML.

    issueIdOrKey: string

    The ID or key of the issue.

    maxResults?: number

    The maximum number of items to return per page.

    orderBy?: string

    Order the results by a field. Accepts created to sort comments by their created date.

    startAt?: number

    The index of the first item to return in a page of results (page offset).