featured-first resource endpoint

URL: /conversations/<id>/responses/@featured-first.<format>

Supported Methods

GET (Deprecated) Retrieve a list of all responses for the selected conversation, with featured responses served first.

Query String Arguments

start-token
The value of the moreResultsToken property of a previous response, to retrieve more items from the same query.
max-results
Maximum number of items to return in the list response.

Resource Type

This endpoint returns an object of type Stream<ConversationResponse>.

entries (array<ConversationResponse>)
The items within the selected range.
estimatedTotalResults (integer)
An estimate of the total number of items in the whole stream of which this object is a chunk. null if a count cannot be determined at all, or if an exact count is returned in totalResults.
moreResultsToken (string)
An opaque token that can be used as the start-token parameter of a followup request to retrieve additional results. null if there are no more results to retrieve, but the presence of this token does not guarantee that the response to a followup request will actually contain results.
totalResults (integer)
The total number of items in the whole stream of which this object is a chunk. null if an exact count cannot be determined.

Client Library Methods for PHP

(Deprecated) Retrieve a list of all responses for the selected conversation, with featured responses served first.
$tp->conversations->getFeaturedFirstResponses(array(

    # Required Parameters
    "id" => $id,

    # Optional Parameters
    "limit" => $limit,
    "startToken" => $startToken,

))