class PlatformAPI::FilterApps

Filters are special endpoints to allow for API consumers to specify a subset of resources to consume in order to reduce the number of requests that are performed. Each filter endpoint endpoint is responsible for determining its supported request format. The endpoints are over POST in order to handle large request bodies without hitting request uri query length limitations, but the requests themselves are idempotent and will not have side effects.

Public Class Methods

new(client) click to toggle source
# File lib/platform-api/client.rb, line 1901
def initialize(client)
  @client = client
end

Public Instance Methods

apps(body = {}) click to toggle source

Request an apps list filtered by app id.

@param body: the object to pass as the request payload

# File lib/platform-api/client.rb, line 1908
def apps(body = {})
  @client.filter_apps.apps(body)
end