Hierarchy

  • GetSearch

Properties

board?: {
    fields?: string | string[] | ("url" | "closed" | "name" | "desc" | "dateLastActivity" | "descData" | "shortLink" | "shortUrl" | "subscribed" | "dateLastView" | "idOrganization" | "invitations" | "invited" | "labelNames" | "memberships" | "pinned" | "powerUps" | "prefs" | "starred")[];
    organization?: string;
}

Type declaration

  • Optional fields?: string | string[] | ("url" | "closed" | "name" | "desc" | "dateLastActivity" | "descData" | "shortLink" | "shortUrl" | "subscribed" | "dateLastView" | "idOrganization" | "invitations" | "invited" | "labelNames" | "memberships" | "pinned" | "powerUps" | "prefs" | "starred")[]

    All or a comma-separated list of: closed, dateLastActivity, dateLastView, desc, descData, idOrganization, invitations, invited, labelNames, memberships, name, pinned, powerUps, prefs, shortLink, shortUrl, starred, subscribed, url

  • Optional organization?: string
boardFields?: string[] | "all"

Deprecated

Use board: { fields: '...' } instead.

boards?: {
    limit?: number;
}

Type declaration

  • Optional limit?: number

    The maximum number of boards returned. Maximum: 1000

boardsLimit?: number

Deprecated

Use boards: { limit: 1 } instead.

The maximum number of boards returned. Maximum: 1000

card?: {
    attachments?: boolean;
    board?: boolean;
    fields?: string | string[] | ("url" | "closed" | "name" | "desc" | "labels" | "badges" | "checkItemStates" | "dateLastActivity" | "descData" | "due" | "email" | "idAttachmentCover" | "idBoard" | "idChecklists" | "idLabels" | "idList" | "idMembers" | "idMembersVoted" | "idShort" | "manualCoverAttachment" | "pos" | "shortLink" | "shortUrl" | "subscribed")[];
    list?: boolean;
    members?: boolean;
    stickers?: boolean;
}

Type declaration

  • Optional attachments?: boolean

    Whether to include attachment objects with card results. A boolean value (true or false) or cover for only card cover attachments.

  • Optional board?: boolean

    Whether to include the parent board with card results

  • Optional fields?: string | string[] | ("url" | "closed" | "name" | "desc" | "labels" | "badges" | "checkItemStates" | "dateLastActivity" | "descData" | "due" | "email" | "idAttachmentCover" | "idBoard" | "idChecklists" | "idLabels" | "idList" | "idMembers" | "idMembersVoted" | "idShort" | "manualCoverAttachment" | "pos" | "shortLink" | "shortUrl" | "subscribed")[]

    All or a comma-separated list of: badges, checkItemStates, closed, dateLastActivity, desc, descData, due, email, idAttachmentCover, idBoard, idChecklists, idLabels, idList, idMembers, idMembersVoted, idShort, labels, manualCoverAttachment, name, pos, shortLink, shortUrl, subscribed, url

  • Optional list?: boolean

    Whether to include the parent list with card results

  • Optional members?: boolean

    Whether to include member objects with card results

  • Optional stickers?: boolean

    Whether to include sticker objects with card results

cardAttachments?: string | boolean

Deprecated

Use card: { attachments: true } instead.

Whether to include attachment objects with card results. A boolean value (true or false) or cover for only card cover attachments.

cardBoard?: boolean

Deprecated

Use card: { board: true } instead.

Whether to include the parent board with card results

cardFields?: string[] | "all"

Deprecated

Use card: { fields: '...' } instead.

All or a comma-separated list of: badges, checkItemStates, closed, dateLastActivity, desc, descData, due, email, idAttachmentCover, idBoard, idChecklists, idLabels, idList, idMembers, idMembersVoted, idShort, labels, manualCoverAttachment, name, pos, shortLink, shortUrl, subscribed, url

cardList?: boolean

Deprecated

Use card: { list: true } instead.

Whether to include the parent list with card results

cardMembers?: boolean

Deprecated

Use card: { members: true } instead.

Whether to include member objects with card results

cardStickers?: boolean

Deprecated

Use card: { stickers: true } instead.

Whether to include sticker objects with card results

cards?: {
    limit?: number;
    page?: number;
}

Type declaration

  • Optional limit?: number

    The maximum number of cards to return. Maximum: 1000

  • Optional page?: number

    The page of results for cards. Maximum: 100

cardsLimit?: number

Deprecated

Use cards: { limit: 1 } instead.

The maximum number of cards to return. Maximum: 1000

cardsPage?: number

Deprecated

Use cards: { page: 1 } instead.

The page of results for cards. Maximum: 100

idBoards?: string[] | "mine"

mine or a comma-separated list of Board IDs

idCards?: string[]

A comma-separated list of Card IDs

idOrganizations?: string[]

A comma-separated list of Organization IDs

member?: {
    fields?: string;
}

Type declaration

  • Optional fields?: string

    All or a comma-separated list of: avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username

memberFields?: string

Deprecated

Use member: { fields: '...' } instead.

All or a comma-separated list of: avatarHash, bio, bioData, confirmed, fullName, idPremOrgsAdmin, initials, memberType, products, status, url, username

members?: {
    limit?: number;
}

Type declaration

  • Optional limit?: number

    The maximum number of members to return. Maximum 1000

membersLimit?: number

Deprecated

Use members: { limit: 1 } instead.

The maximum number of members to return. Maximum 1000

modelTypes?: string | string[] | ("members" | "actions" | "boards" | "cards" | "organizations")[]

What type or types of Trello objects you want to search. all or a comma-separated list of: actions, boards, cards, members, organizations

organization?: {
    fields?: string | string[];
}

Type declaration

  • Optional fields?: string | string[]

    All or a comma-separated list of billableMemberCount, desc, descData, displayName, idBoards, invitations, invited, logoHash, memberships, name, powerUps, prefs, premiumFeatures, products, url, website

organizationFields?: string

Deprecated

Use organization: { fields: '...' } instead.

All or a comma-separated list of billableMemberCount, desc, descData, displayName, idBoards, invitations, invited, logoHash, memberships, name, powerUps, prefs, premiumFeatures, products, url, website

organizations?: {
    limit?: number;
}

Type declaration

  • Optional limit?: number

    The maximum number of teams to return. Maximum 1000

organizationsLimit?: number

Deprecated

Use organizations: { limit: 1 } instead.

The maximum number of teams to return. Maximum 1000

partial?: boolean

By default, Trello searches for each word in your query against exactly matching words within Member content. Specifying partial to be true means that we will look for content that starts with any of the words in your query. If you are looking for a Card titled "My Development Status Report", by default you would need to search for "Development". If you have partial enabled, you will be able to search for "dev" but not "development".

query: string

The search query with a length of 1 to 16384 characters

Generated using TypeDoc v0.24.8