Class: Peddler::API::NotificationsV1

Inherits:
Peddler::API show all
Defined in:
lib/peddler/api/notifications_v1.rb

Overview

Selling Partner API for Notifications

The Selling Partner API for Notifications lets you subscribe to notifications that are relevant to a selling partner's business. Using this API you can create a destination to receive notifications, subscribe to notifications, delete notification subscriptions, and more. For more information, refer to the Notifications Use Case Guide.

Instance Attribute Summary

Attributes inherited from Peddler::API

#access_token, #endpoint

Instance Method Summary collapse

Methods inherited from Peddler::API

#cannot_sandbox!, #endpoint_uri, #http, #initialize, #meter, #must_sandbox!, #retriable, #sandbox, #sandbox?, #use, #via

Constructor Details

This class inherits a constructor from Peddler::API

Instance Method Details

#create_destination(body, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Creates a destination resource to receive notifications. The createDestination operation is grantless. For more information, refer to Grantless operations.

Parameters:

  • body (Hash)
  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

Returns:

  • (Hash)

    The API response



112
113
114
115
116
# File 'lib/peddler/api/notifications_v1.rb', line 112

def create_destination(body, rate_limit: 1.0)
  path = "/notifications/v1/destinations"

  meter(rate_limit).post(path, body:)
end

#create_subscription(body, notification_type, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Creates a subscription for the specified notification type to be delivered to the specified destination. Before you can subscribe, you must first create the destination by calling the createDestination operation. In cases where the specified notification type supports multiple payload versions, you can utilize this API to subscribe to a different payload version if you already have an existing subscription for a different payload version.

Parameters:

  • body (Hash)
  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

  • notification_type (String)

    The type of notification. For more information about notification types, refer to Notification Type Values.

Returns:

  • (Hash)

    The API response



52
53
54
55
56
# File 'lib/peddler/api/notifications_v1.rb', line 52

def create_subscription(body, notification_type, rate_limit: 1.0)
  path = "/notifications/v1/subscriptions/#{notification_type}"

  meter(rate_limit).post(path, body:)
end

#delete_destination(destination_id, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Deletes the destination that you specify. The deleteDestination operation is grantless. For more information, refer to Grantless operations.

Parameters:

  • destination_id (String)

    The identifier for the destination that you want to delete.

  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

Returns:

  • (Hash)

    The API response



139
140
141
142
143
# File 'lib/peddler/api/notifications_v1.rb', line 139

def delete_destination(destination_id, rate_limit: 1.0)
  path = "/notifications/v1/destinations/#{destination_id}"

  meter(rate_limit).delete(path)
end

#delete_subscription_by_id(subscription_id, notification_type, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Deletes the subscription indicated by the subscription identifier and notification type that you specify. The subscription identifier can be for any subscription associated with your application. After you successfully call this operation, notifications will stop being sent for the associated subscription. The deleteSubscriptionById operation is grantless. For more information, refer to Grantless operations.

Parameters:

  • subscription_id (String)

    The identifier for the subscription that you want to delete.

  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

  • notification_type (String)

    The type of notification. For more information about notification types, refer to Notification Type Values.

Returns:

  • (Hash)

    The API response



86
87
88
89
90
# File 'lib/peddler/api/notifications_v1.rb', line 86

def delete_subscription_by_id(subscription_id, notification_type, rate_limit: 1.0)
  path = "/notifications/v1/subscriptions/#{notification_type}/#{subscription_id}"

  meter(rate_limit).delete(path)
end

#get_destination(destination_id, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Returns information about the destination that you specify. The getDestination operation is grantless. For more information, refer to Grantless operations.

Parameters:

  • destination_id (String)

    The identifier generated when you created the destination.

  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

Returns:

  • (Hash)

    The API response



126
127
128
129
130
# File 'lib/peddler/api/notifications_v1.rb', line 126

def get_destination(destination_id, rate_limit: 1.0)
  path = "/notifications/v1/destinations/#{destination_id}"

  meter(rate_limit).get(path)
end

#get_destinations(rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Returns information about all destinations. The getDestinations operation is grantless. For more information, refer to Grantless operations.

Parameters:

  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

Returns:

  • (Hash)

    The API response



98
99
100
101
102
# File 'lib/peddler/api/notifications_v1.rb', line 98

def get_destinations(rate_limit: 1.0)
  path = "/notifications/v1/destinations"

  meter(rate_limit).get(path)
end

#get_subscription(notification_type, payload_version: nil, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Returns information about subscription of the specified notification type and payload version. payloadVersion is an optional parameter. When payloadVersion is not provided, it will return latest payload version subscription's information. You can use this API to get subscription information when you do not have a subscription identifier.

Parameters:

  • payload_version (String) (defaults to: nil)

    The version of the payload object to be used in the notification.

  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

  • notification_type (String)

    The type of notification. For more information about notification types, refer to Notification Type Values.

Returns:

  • (Hash)

    The API response



32
33
34
35
36
37
38
39
# File 'lib/peddler/api/notifications_v1.rb', line 32

def get_subscription(notification_type, payload_version: nil, rate_limit: 1.0)
  path = "/notifications/v1/subscriptions/#{notification_type}"
  params = {
    "payloadVersion" => payload_version,
  }.compact

  meter(rate_limit).get(path, params:)
end

#get_subscription_by_id(subscription_id, notification_type, rate_limit: 1.0) ⇒ Hash

Note:

This operation can make a static sandbox call.

Returns information about a subscription for the specified notification type. The getSubscriptionById operation is grantless. For more information, refer to Grantless operations.

Parameters:

  • subscription_id (String)

    The identifier for the subscription that you want to get.

  • rate_limit (Float) (defaults to: 1.0)

    Requests per second

  • notification_type (String)

    The type of notification. For more information about notification types, refer to Notification Type Values.

Returns:

  • (Hash)

    The API response



68
69
70
71
72
# File 'lib/peddler/api/notifications_v1.rb', line 68

def get_subscription_by_id(subscription_id, notification_type, rate_limit: 1.0)
  path = "/notifications/v1/subscriptions/#{notification_type}/#{subscription_id}"

  meter(rate_limit).get(path)
end