Class: Ingenico::Connect::SDK::Merchant::Hostedcheckouts::HostedcheckoutsClient
- Inherits:
-
ApiResource
- Object
- ApiResource
- Ingenico::Connect::SDK::Merchant::Hostedcheckouts::HostedcheckoutsClient
- Defined in:
- lib/ingenico/connect/sdk/merchant/hostedcheckouts/hostedcheckouts_client.rb
Overview
Hostedcheckouts client. Thread-safe.
Instance Attribute Summary
Attributes inherited from ApiResource
#client_meta_info, #communicator
Instance Method Summary collapse
-
#create(body, context = nil) ⇒ Object
Resource /{merchantId}/hostedcheckouts.
-
#get(hosted_checkout_id, context = nil) ⇒ Object
Resource /{merchantId}/hostedcheckouts/{hostedCheckoutId}.
-
#initialize(parent, path_context) ⇒ HostedcheckoutsClient
constructor
- parent
- ApiResource path_context
-
Hash of String to String.
Constructor Details
#initialize(parent, path_context) ⇒ HostedcheckoutsClient
- parent
- path_context
-
Hash of String to String
20 21 22 |
# File 'lib/ingenico/connect/sdk/merchant/hostedcheckouts/hostedcheckouts_client.rb', line 20 def initialize(parent, path_context) super(parent, path_context) end |
Instance Method Details
#create(body, context = nil) ⇒ Object
Resource /{merchantId}/hostedcheckouts
_merchantId__hostedcheckouts_post Create hosted checkout
- body
- context
- Returns
- Raises
-
ValidationException if the request was not correct and couldn’t be processed (HTTP status code 400)
- Raises
-
AuthorizationException if the request was not allowed (HTTP status code 403)
- Raises
-
IdempotenceException if an idempotent request caused a conflict (HTTP status code 409)
- Raises
-
ReferenceException if an object was attempted to be referenced that doesn’t exist or has been removed,
or there was a conflict (HTTP status code 404, 409 or 410)
- Raises
-
GlobalCollectException if something went wrong at the GlobalCollect platform,
the GlobalCollect platform was unable to process a message from a downstream partner/acquirer,
or the service that you’re trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
- Raises
-
ApiException if the GlobalCollect platform returned any other error
39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/ingenico/connect/sdk/merchant/hostedcheckouts/hostedcheckouts_client.rb', line 39 def create(body, context=nil) uri = instantiate_uri('/{apiVersion}/{merchantId}/hostedcheckouts', nil) return @communicator.post( uri, client_headers, nil, body, Ingenico::Connect::SDK::Domain::Hostedcheckout::CreateHostedCheckoutResponse, context) rescue ResponseException => e error_type = Ingenico::Connect::SDK::Domain::Errors::ErrorResponse error_object = @communicator.marshaller.unmarshal(e.body, error_type) raise create_exception(e.status_code, e.body, error_object, context) end |
#get(hosted_checkout_id, context = nil) ⇒ Object
Resource /{merchantId}/hostedcheckouts/{hostedCheckoutId}
_merchantId__hostedcheckouts__hostedCheckoutId__get Get hosted checkout status
- hosted_checkout_id
-
String
- context
- Returns
- Raises
-
ValidationException if the request was not correct and couldn’t be processed (HTTP status code 400)
- Raises
-
AuthorizationException if the request was not allowed (HTTP status code 403)
- Raises
-
IdempotenceException if an idempotent request caused a conflict (HTTP status code 409)
- Raises
-
ReferenceException if an object was attempted to be referenced that doesn’t exist or has been removed,
or there was a conflict (HTTP status code 404, 409 or 410)
- Raises
-
GlobalCollectException if something went wrong at the GlobalCollect platform,
the GlobalCollect platform was unable to process a message from a downstream partner/acquirer,
or the service that you’re trying to reach is temporary unavailable (HTTP status code 500, 502 or 503)
- Raises
-
ApiException if the GlobalCollect platform returned any other error
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/ingenico/connect/sdk/merchant/hostedcheckouts/hostedcheckouts_client.rb', line 69 def get(hosted_checkout_id, context=nil) path_context = { 'hostedCheckoutId' => hosted_checkout_id, } uri = instantiate_uri('/{apiVersion}/{merchantId}/hostedcheckouts/{hostedCheckoutId}', path_context) return @communicator.get( uri, client_headers, nil, Ingenico::Connect::SDK::Domain::Hostedcheckout::GetHostedCheckoutResponse, context) rescue ResponseException => e error_type = Ingenico::Connect::SDK::Domain::Errors::ErrorResponse error_object = @communicator.marshaller.unmarshal(e.body, error_type) raise create_exception(e.status_code, e.body, error_object, context) end |