Skip to content

Instantly share code, notes, and snippets.

@BDQ
Last active December 18, 2015 15:49
Show Gist options
  • Save BDQ/5806800 to your computer and use it in GitHub Desktop.
Save BDQ/5806800 to your computer and use it in GitHub Desktop.
amazon:orders:poll
{
"message": "amazon:order:poll",
"message_id": "some_id",
"payload":
{
},
"parameters":[
{ "name": "marketplace_id", "value": 123},
{ "name": "seller_id", "value": "1123"},
{ "name": "secret_key", "value": "some_big_key"},
{ "name": "last_created_after", "value": "timestamp" }
]
}
{
"message_id": "some_id",
"messages": [
{
"message": "spree:order:import",
"payload": {
"order": {
"email": "[email protected]",
"line_items": [
{
"price": 19.99,
"sku": "ABC-123",
"quantity": 1
},
{
"price": 23.99,
"sku": "DEF-123",
"quantity": 3
}
],
"shipping_address": {
"firstname": "Chris",
"lastname": "Mar",
"address1": "112 Hula Lane",
"address2": "",
"city": "Leesburg",
"zipcode": "20175",
"phone": "555-555-1212",
"company": "RubyLoco",
"country": {
"id": 49,
"name": "Ireland",
"iso": "IE"
},
"state": {
"id": 49,
"name": "Maryland",
"abbr": "MD"
}
},
"billing_address": {
"firstname": "Chris",
"lastname": "Mar",
"address1": "112 Billing Lane",
"address2": "",
"city": "Leesburg",
"zipcode": "20175",
"phone": "555-555-1212",
"company": "RubyLoco",
"country": {
"id": 49,
"name": "Ireland",
"iso": "IE"
},
"state": {
"id": 49,
"name": "Maryland",
"abbr": "MD"
}
}
}
}
}
]
"parameters":[
{ "name": "last_created_after", "value": "new_timestamp" }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment