C# Class PodioAPI.Services.SearchService

Mostra file Open project: podio/podio-dotnet

Public Methods

Method Description
SearchGlobally ( string query, int limit = null, int offset, string refType = null ) : Task>

Searches in all items, statuses, profiles, files, meetings and non-private tasks. The objects will be returned sorted descending by the time the object was created.

Podio API Reference: https://developers.podio.com/doc/search/search-globally-22488

SearchInApp ( int appId, string query, int limit = null, int offset, string refType = null ) : Task>

Searches in all items and tasks in the app.

Podio API Reference: https://developers.podio.com/doc/search/search-in-app-4234651

SearchInOrganization ( int orgId, string query, int limit = null, int offset, string refType = null ) : Task>

Searches in all items, statuses and non-private tasks in the organization.

Podio API Reference: https://developers.podio.com/doc/search/search-in-organization-22487

SearchInSpace ( int spaceId, string query, int limit = null, int offset, string refType = null ) : Task>

Searches in all items, statuses and non-private tasks in the space. The objects will be returned sorted descending by the time the object had any update.

Podio API Reference: https://developers.podio.com/doc/search/search-in-space-22479

SearchService ( Podio currentInstance ) : System.Collections.Generic

Method Details

SearchGlobally() public method

Searches in all items, statuses, profiles, files, meetings and non-private tasks. The objects will be returned sorted descending by the time the object was created.

Podio API Reference: https://developers.podio.com/doc/search/search-globally-22488

public SearchGlobally ( string query, int limit = null, int offset, string refType = null ) : Task>
query string The text to search for.
limit int The number of results to return; up to 20 results are returned in one call.
offset int The rank of the first search result to return (default=0).
refType string /// The type of objects to search for. Can be one of "item", "task", "conversation", "app", "status", /// "file" and "profile" ///
return Task>

SearchInApp() public method

Searches in all items and tasks in the app.

Podio API Reference: https://developers.podio.com/doc/search/search-in-app-4234651

public SearchInApp ( int appId, string query, int limit = null, int offset, string refType = null ) : Task>
appId int
query string
limit int
offset int
refType string /// The type of objects to search for. Can be one of "item", "task", "conversation", "app", "status", /// "file" and "profile" ///
return Task>

SearchInOrganization() public method

Searches in all items, statuses and non-private tasks in the organization.

Podio API Reference: https://developers.podio.com/doc/search/search-in-organization-22487

public SearchInOrganization ( int orgId, string query, int limit = null, int offset, string refType = null ) : Task>
orgId int
query string
limit int
offset int
refType string /// The type of objects to search for. Can be one of "item", "task", "conversation", "app", "status", /// "file" and "profile" ///
return Task>

SearchInSpace() public method

Searches in all items, statuses and non-private tasks in the space. The objects will be returned sorted descending by the time the object had any update.

Podio API Reference: https://developers.podio.com/doc/search/search-in-space-22479

public SearchInSpace ( int spaceId, string query, int limit = null, int offset, string refType = null ) : Task>
spaceId int
query string
limit int
offset int
refType string /// The type of objects to search for. Can be one of "item", "task", "conversation", "app", "status", /// "file" and "profile" ///
return Task>

SearchService() public method

public SearchService ( Podio currentInstance ) : System.Collections.Generic
currentInstance Podio
return System.Collections.Generic