Method: MWS::Subscriptions::Client#get_subscription
- Defined in:
- lib/mws/subscriptions/client.rb
#get_subscription(notification_type, sqs_queue_url, marketplace_id) ⇒ Peddler::XMLParser
Gets a subscription
93 94 95 96 97 98 99 100 |
# File 'lib/mws/subscriptions/client.rb', line 93 def get_subscription(notification_type, sqs_queue_url, marketplace_id) operation('GetSubscription') .add('MarketplaceId' => marketplace_id, 'NotificationType' => notification_type) .add(build_destination(sqs_queue_url)) run end |