Method: Twilio::REST::Chat::V2::ServiceContext::ChannelContext::InviteList#get_page

Defined in:
lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb

#get_page(target_url) ⇒ Page

Retrieve a single page of InviteInstance records from the API. Request is executed immediately.

Parameters:

  • target_url (String)

    API-generated URL for the requested results page

Returns:

  • (Page)

    Page of InviteInstance



215
216
217
218
219
220
221
# File 'lib/twilio-ruby/rest/chat/v2/service/channel/invite.rb', line 215

def get_page(target_url)
    response = @version.domain.request(
        'GET',
        target_url
    )
InvitePage.new(@version, response, @solution)
end