All URIs are relative to http://localhost:4000
Method | HTTP request | Description |
---|---|---|
create_webhook_subscriber | POST /api/v2/platform/webhooks/subscribers | Create a Webhook Subscriber |
delete_webhook_subscriber | DELETE /api/v2/platform/webhooks/subscribers/{id} | Delete a Webhook Subscriber |
show_webhook_subscriber | GET /api/v2/platform/webhooks/subscribers/{id} | Return a Webhook Subscriber |
update_webhook_subscriber | PATCH /api/v2/platform/webhooks/subscribers/{id} | Update a Webhook Subscriber |
webhook_subscribers_list | GET /api/v2/platform/webhooks/subscribers | Return a list of Webhook Subscribers |
create_webhook_subscriber(opts)
Create a Webhook Subscriber
Creates a Webhook Subscriber
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::WebhookSubscribersApi.new
opts = {
create_webhook_subscriber_params: SpreeClient::CreateWebhookSubscriberParams.new({subscriber: SpreeClient::CreateWebhookSubscriberParamsSubscriber.new({url: 'https://www.url.com/'})}) # CreateWebhookSubscriberParams |
}
begin
# Create a Webhook Subscriber
result = api_instance.create_webhook_subscriber(opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->create_webhook_subscriber: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> create_webhook_subscriber_with_http_info(opts)
begin
# Create a Webhook Subscriber
data, status_code, headers = api_instance.create_webhook_subscriber_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->create_webhook_subscriber_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
create_webhook_subscriber_params | CreateWebhookSubscriberParams | [optional] |
- Content-Type: application/json
- Accept: application/vnd.api+json
delete_webhook_subscriber(id)
Delete a Webhook Subscriber
Deletes a Webhook Subscriber
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::WebhookSubscribersApi.new
id = 'id_example' # String |
begin
# Delete a Webhook Subscriber
api_instance.delete_webhook_subscriber(id)
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->delete_webhook_subscriber: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> delete_webhook_subscriber_with_http_info(id)
begin
# Delete a Webhook Subscriber
data, status_code, headers = api_instance.delete_webhook_subscriber_with_http_info(id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->delete_webhook_subscriber_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/vnd.api+json
show_webhook_subscriber(id)
Return a Webhook Subscriber
Returns a Webhook Subscriber
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::WebhookSubscribersApi.new
id = 'id_example' # String |
begin
# Return a Webhook Subscriber
result = api_instance.show_webhook_subscriber(id)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->show_webhook_subscriber: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> show_webhook_subscriber_with_http_info(id)
begin
# Return a Webhook Subscriber
data, status_code, headers = api_instance.show_webhook_subscriber_with_http_info(id)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->show_webhook_subscriber_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String |
- Content-Type: Not defined
- Accept: application/vnd.api+json
update_webhook_subscriber(id, opts)
Update a Webhook Subscriber
Updates a Webhook Subscriber
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::WebhookSubscribersApi.new
id = 'id_example' # String |
opts = {
update_webhook_subscriber_params: SpreeClient::UpdateWebhookSubscriberParams.new({subscriber: SpreeClient::CreateWebhookSubscriberParamsSubscriber.new({url: 'https://www.url.com/'})}) # UpdateWebhookSubscriberParams |
}
begin
# Update a Webhook Subscriber
result = api_instance.update_webhook_subscriber(id, opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->update_webhook_subscriber: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> update_webhook_subscriber_with_http_info(id, opts)
begin
# Update a Webhook Subscriber
data, status_code, headers = api_instance.update_webhook_subscriber_with_http_info(id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Resource>
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->update_webhook_subscriber_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | ||
update_webhook_subscriber_params | UpdateWebhookSubscriberParams | [optional] |
- Content-Type: application/json
- Accept: application/vnd.api+json
webhook_subscribers_list(opts)
Return a list of Webhook Subscribers
Returns a list of Webhook Subscribers
require 'time'
require 'spree_client'
# setup authorization
SpreeClient.configure do |config|
# Configure Bearer authorization: bearer_auth
config.access_token = 'YOUR_BEARER_TOKEN'
end
api_instance = SpreeClient::WebhookSubscribersApi.new
opts = {
page: 1, # Integer |
per_page: 50, # Integer |
filter_active_eq: 'true', # String |
filter_url_cont: 'mysite' # String |
}
begin
# Return a list of Webhook Subscribers
result = api_instance.webhook_subscribers_list(opts)
p result
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->webhook_subscribers_list: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> webhook_subscribers_list_with_http_info(opts)
begin
# Return a list of Webhook Subscribers
data, status_code, headers = api_instance.webhook_subscribers_list_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <ResourcesList>
rescue SpreeClient::ApiError => e
puts "Error when calling WebhookSubscribersApi->webhook_subscribers_list_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
page | Integer | [optional] | |
per_page | Integer | [optional] | |
filter_active_eq | String | [optional] | |
filter_url_cont | String | [optional] |
- Content-Type: Not defined
- Accept: application/vnd.api+json