Skip to content

Instantly share code, notes, and snippets.

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 somewherewarm-snippets/c32beb68fe76ea861f5ebd2e68aeda38 to your computer and use it in GitHub Desktop.
Save somewherewarm-snippets/c32beb68fe76ea861f5ebd2e68aeda38 to your computer and use it in GitHub Desktop.
curl -X PUT https://example.com/wp-json/wc/v2/orders/199 \
-u consumer_key:consumer_secret \
-H "Content-Type: application/json" \
-k \
-d '{
"line_items": [
{
"product_id": 101,
"quantity": 1,
"composite_configuration": [
{
"component_id": "1482917234",
"product_id": 114,
"quantity": 1,
"variation_id": 115,
"attributes": [
{
"name": "Attribute A",
"option": "Value A1"
},
{
"name": "Attribute B",
"option": "Value B1"
}
]
}
]
}
]
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment