from-voices resource endpoint
URL: /conversations/<id>/responses/@from-voices.<format>
Supported Methods
| GET | Retrieve a list of responses from invited participants for the selected conversation. |
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
- Retrieve a list of responses from invited participants for the selected conversation.
$tp->conversations->getFromVoicesResponses(array( # Required Parameters "id" => $id, # Optional Parameters "limit" => $limit, "startToken" => $startToken, ))