Class: Merge::Ats::WebhookReceiversClient
- Inherits:
-
Object
- Object
- Merge::Ats::WebhookReceiversClient
- Defined in:
- lib/merge_ruby_client/ats/webhook_receivers/client.rb
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#create(event:, is_active:, key: nil, request_options: nil) ⇒ Merge::Ats::WebhookReceiver
Creates a ‘WebhookReceiver` object with the given values.
- #initialize(request_client:) ⇒ Merge::Ats::WebhookReceiversClient constructor
-
#list(request_options: nil) ⇒ Array<Merge::Ats::WebhookReceiver>
Returns a list of ‘WebhookReceiver` objects.
Constructor Details
#initialize(request_client:) ⇒ Merge::Ats::WebhookReceiversClient
16 17 18 |
# File 'lib/merge_ruby_client/ats/webhook_receivers/client.rb', line 16 def initialize(request_client:) @request_client = request_client end |
Instance Attribute Details
#request_client ⇒ Merge::RequestClient (readonly)
12 13 14 |
# File 'lib/merge_ruby_client/ats/webhook_receivers/client.rb', line 12 def request_client @request_client end |
Instance Method Details
#create(event:, is_active:, key: nil, request_options: nil) ⇒ Merge::Ats::WebhookReceiver
Creates a ‘WebhookReceiver` object with the given values.
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/merge_ruby_client/ats/webhook_receivers/client.rb', line 70 def create(event:, is_active:, key: nil, request_options: nil) response = @request_client.conn.post do |req| req..timeout = .timeout_in_seconds unless &.timeout_in_seconds.nil? req.headers["Authorization"] = .api_key unless &.api_key.nil? req.headers["X-Account-Token"] = .account_token unless &.account_token.nil? req.headers = { **(req.headers || {}), **@request_client.get_headers, **(&.additional_headers || {}) }.compact unless .nil? || &.additional_query_parameters.nil? req.params = { **(&.additional_query_parameters || {}) }.compact end req.body = { **(&.additional_body_parameters || {}), event: event, is_active: is_active, key: key }.compact req.url "#{@request_client.get_url(request_options: )}/ats/v1/webhook-receivers" end Merge::Ats::WebhookReceiver.from_json(json_object: response.body) end |
#list(request_options: nil) ⇒ Array<Merge::Ats::WebhookReceiver>
Returns a list of ‘WebhookReceiver` objects.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/merge_ruby_client/ats/webhook_receivers/client.rb', line 31 def list(request_options: nil) response = @request_client.conn.get do |req| req..timeout = .timeout_in_seconds unless &.timeout_in_seconds.nil? req.headers["Authorization"] = .api_key unless &.api_key.nil? req.headers["X-Account-Token"] = .account_token unless &.account_token.nil? req.headers = { **(req.headers || {}), **@request_client.get_headers, **(&.additional_headers || {}) }.compact unless .nil? || &.additional_query_parameters.nil? req.params = { **(&.additional_query_parameters || {}) }.compact end unless .nil? || &.additional_body_parameters.nil? req.body = { **(&.additional_body_parameters || {}) }.compact end req.url "#{@request_client.get_url(request_options: )}/ats/v1/webhook-receivers" end parsed_json = JSON.parse(response.body) parsed_json&.map do |item| item = item.to_json Merge::Ats::WebhookReceiver.from_json(json_object: item) end end |