Skip to content

Instantly share code, notes, and snippets.

@mikekavouras
Last active October 27, 2016 17:20
Show Gist options
  • Save mikekavouras/c8526d0918e79e8c73fed0fef6540157 to your computer and use it in GitHub Desktop.
Save mikekavouras/c8526d0918e79e8c73fed0fef6540157 to your computer and use it in GitHub Desktop.
{
"product" : {
"id" : 1,
"image_url" : "whatever.com"
},
"color" : {
"id" : 1,
"name" : "White"
}
"campaign_name" : "whatever",
"size" : "whatever",
"price" : "whatever", // this should probably be a Money object
"quantity" : 10,
"token" : "gimme" // campaign root token
}
// How the order request is formatted
{
"line_items" : [
{
"style" : productID + "-" + colorID,
"size" : "M",
"quantity" : 10
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment