Method: Propertyware::PortfoliosApi#get_portfolio_conversations

Defined in:
lib/propertyware/api/portfolios_api.rb

#get_portfolio_conversations(portfolio_id, opts = {}) ⇒ Array<Conversation>

Retrieve all portfolio conversations Retrieves all the conversations of a portfolio.<br/><br/>Required permission:<br/><span class="permissionBlock">PORTFOLIOS</span> - Read <br/><br/>Sortable by: createddate, lastmodifieddatetime, id

Parameters:

  • portfolio_id (Integer)

    Portfolio ID

  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :offset (Integer)

    &#x60;offset&#x60; indicates the position of the first record to return. The offset is zero-based and the default is 0.

  • :limit (Integer)

    &#x60;limit&#x60; indicates the maximum number of results to be returned in the response. &#x60;limit&#x60; can range between 1 and 500 and the default is 100. (default to 100)

  • :last_modified_date_time_start (Time)

    Filters results to any item modified on or after the date time specified.

  • :last_modified_date_time_end (Time)

    Filters results to any item modified on or prior to the date time specified.

  • :orderby (String)

    Indicates the field(s) and direction to sort the results in the response.

  • :type (String)

    Filters results by the conversation type.

Returns:



373
374
375
376
# File 'lib/propertyware/api/portfolios_api.rb', line 373

def get_portfolio_conversations(portfolio_id, opts = {})
  data, _status_code, _headers = get_portfolio_conversations_with_http_info(portfolio_id, opts)
  data
end