Class: DuffelAPI::Services::OrderChangeRequestsService

Inherits:
BaseService
  • Object
show all
Defined in:
lib/duffel_api/services/order_change_requests_service.rb

Constant Summary

Constants inherited from BaseService

BaseService::DEFAULT_ALL_PARAMS

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Constructor Details

This class inherits a constructor from DuffelAPI::Services::BaseService

Instance Method Details

#create(options = {}) ⇒ Resources::OrderChangeRequest

Creates an order change request

Parameters:

  • [required, (Hash)

    a customizable set of options

Returns:

Raises:



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/duffel_api/services/order_change_requests_service.rb', line 12

def create(options = {})
  path = "/air/order_change_requests"

  params = options.delete(:params) || {}

  options[:params] = {}
  options[:params]["data"] = params

  begin
    response = make_request(:post, path, options)

    # Response doesn't raise any errors until #body is called
    response.tap(&:raw_body)
  end

  return if response.raw_body.nil?

  Resources::OrderChangeRequest.new(unenvelope_body(response.parsed_body), response)
end

#get(id, options = {}) ⇒ Resources::OrderChangeRequest

Retrieves a single order change request by ID

Parameters:

  • id (String)

Returns:

Raises:



37
38
39
40
41
42
43
44
45
# File 'lib/duffel_api/services/order_change_requests_service.rb', line 37

def get(id, options = {})
  path = substitute_url_pattern("/air/order_change_requests/:id", "id" => id)

  response = make_request(:get, path, options)

  return if response.raw_body.nil?

  Resources::OrderChangeRequest.new(unenvelope_body(response.parsed_body), response)
end