Method: Twilio::REST::Serverless::V1::ServiceContext::BuildList#get_page

Defined in:
lib/twilio-ruby/rest/serverless/v1/service/build.rb

#get_page(target_url) ⇒ Page

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

Parameters:

  • target_url (String)

    API-generated URL for the requested results page

Returns:

  • (Page)

    Page of BuildInstance



214
215
216
217
218
219
220
# File 'lib/twilio-ruby/rest/serverless/v1/service/build.rb', line 214

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