Skip to content

Instantly share code, notes, and snippets.

@bradleypriest
Last active July 27, 2016 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradleypriest/7bf380e96c1e5b1bcda0e1066ea1298a to your computer and use it in GitHub Desktop.
Save bradleypriest/7bf380e96c1e5b1bcda0e1066ea1298a to your computer and use it in GitHub Desktop.

Minimal

POST /variants/12345/transfer

{ 
  "variant": {
    "new_product_id": "123" // Required
  }
}

When the options need to be changed to match the new product

POST /variants/12345/transfer

{ 
  "variant": {
    "new_product_id": "123", // Required
    "new_opt1": "Red",       // Optional
    "new_opt2":  "Large",    // Optional
    "new_opt3":  "Roundish"  // Optional
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment