Class: NewStoreApi::PlatformEventCallbacksController
- Inherits:
-
BaseController
- Object
- BaseController
- NewStoreApi::PlatformEventCallbacksController
- Defined in:
- lib/new_store_api/controllers/platform_event_callbacks_controller.rb
Overview
PlatformEventCallbacksController
Constant Summary
Constants inherited from BaseController
Instance Attribute Summary
Attributes inherited from BaseController
Instance Method Summary collapse
-
#create_platform_event(body) ⇒ EventCapturedDto
🚧 BETA: This endpoint is in beta and may change.
Methods inherited from BaseController
#initialize, #new_parameter, #new_request_builder, #new_response_handler, user_agent
Constructor Details
This class inherits a constructor from NewStoreApi::BaseController
Instance Method Details
#create_platform_event(body) ⇒ EventCapturedDto
🚧 BETA: This endpoint is in beta and may change.Captures an event from the NewStore platform. here
See API Lifecycle Documentation for details.22 23 24 25 26 27 28 29 30 31 32 33 34 35
# File 'lib/new_store_api/controllers/platform_event_callbacks_controller.rb', line 22 def create_platform_event(body) @api_call .request(new_request_builder(HttpMethodEnum::POST, '/taxes/platform-events', Server::API) .header_param(new_parameter('application/json', key: 'Content-Type')) .body_param(new_parameter(body)) .header_param(new_parameter('application/json', key: 'accept')) .body_serializer(proc do |param| param.to_json unless param.nil? end)) .response(new_response_handler .deserializer(APIHelper.method(:custom_type_deserializer)) .deserialize_into(EventCapturedDto.method(:from_hash))) .execute end