@@ -120,7 +120,7 @@ class << self
120120 # @return [Phaxio::Resource::Collection<Phaxio::Resources::Fax>]
121121 # The collection of faxes matching your request.
122122 # @raise [Phaxio::Error::PhaxioError]
123- # @see https://www.phaxio.com/docs/api/v2/faxes/list_faxes
123+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/list_faxes
124124 def list params = { }
125125 response = Client . request :get , faxes_endpoint , params
126126 response_collection response
@@ -159,8 +159,8 @@ def list params = {}
159159 # @return [Phaxio::Resources::Fax]
160160 # The created fax.
161161 # @raise [Phaxio::Error::PhaxioError]
162- # @see https://www.phaxio.com/docs/api/v2/faxes/create_and_send_fax
163- # @see https://www.phaxio.com/docs/api/v2/faxes/batching
162+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/create_and_send_fax
163+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/batching
164164 def create params = { }
165165 response = Client . request :post , faxes_endpoint , params
166166 response_reference response
@@ -174,7 +174,7 @@ def create params = {}
174174 # A hash of parameters to send to Phaxio. This action takes no unique parameters.
175175 # @return [Phaxio::Resource::Fax] The requested fax.
176176 # @raise [Phaxio::Error::PhaxioError]
177- # @see https://www.phaxio.com/docs/api/v2/faxes/get_fax
177+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/get_fax
178178 def get id , params = { }
179179 response = Client . request :get , fax_endpoint ( id . to_i ) , params
180180 response_record response
@@ -191,7 +191,7 @@ def get id, params = {}
191191 # @return [Phaxio::Resources::Fax::Reference]
192192 # A reference to the canceled fax.
193193 # @raise [Phaxio::Error::PhaxioError]
194- # @see https://www.phaxio.com/docs/api/v2/faxes/cancel
194+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/cancel
195195 def cancel id , params = { }
196196 response = Client . request :post , cancel_fax_endpoint ( id ) , params
197197 response_reference response
@@ -207,7 +207,7 @@ def cancel id, params = {}
207207 # @return [Phaxio::Resources::Fax::Reference]
208208 # A reference to the resent fax.
209209 # @raise [Phaxio::Error::PhaxioError]
210- # @see https://www.phaxio.com/docs/api/v2/faxes/resend
210+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/resend
211211 def resend id , params = { }
212212 response = Client . request :post , resend_fax_endpoint ( id ) , params
213213 response_reference response
@@ -221,7 +221,7 @@ def resend id, params = {}
221221 # parameters.
222222 # @return [true]
223223 # @raise [Phaxio::Error::PhaxioError]
224- # @see https://www.phaxio.com/docs/api/v2/faxes/delete_fax
224+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/delete_fax
225225 def delete id , params = { }
226226 Client . request :delete , fax_endpoint ( id ) , params
227227 true
@@ -235,7 +235,7 @@ def delete id, params = {}
235235 # parameters.
236236 # @return [true]
237237 # @raise [Phaxio::Error::PhaxioError]
238- # @see https://www.phaxio.com/docs/api/v2/faxes/delete_fax_file
238+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/delete_fax_file
239239 def delete_file id , params = { }
240240 Client . request :delete , fax_file_endpoint ( id ) , params
241241 true
@@ -252,7 +252,7 @@ def delete_file id, params = {}
252252 # @return [File]
253253 # The requested fax file.
254254 # @raise [Phaxio::Error::PhaxioError]
255- # @see https://www.phaxio.com/docs/api/v2/faxes/get_fax_file
255+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/get_fax_file
256256 def file id , params = { }
257257 Client . request :get , fax_file_endpoint ( id ) , params
258258 end
@@ -269,7 +269,7 @@ def file id, params = {}
269269 # number. Default is the public Phaxio phone number.
270270 # @return [true]
271271 # @raise [Phaxio::Error::PhaxioError]
272- # @see https://www.phaxio.com/docs/api/v2/faxes/test_receive
272+ # @see https://www.phaxio.com/docs/api/v2.1 /faxes/test_receive
273273 def test_receive params = { }
274274 Client . request :post , faxes_endpoint , test_receive_params ( params )
275275 true
0 commit comments