POST
/
v2
/
products
/
{productId}
/
bundle
curl --request POST \
  --url https://api.production.orderprotection.com/v2/products/{productId}/bundle \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "productIds": [
    "product-1",
    "product-2",
    "product-2"
  ]
}'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

productId
string
required

Body

application/json
productIds
string[]
required

Your internal product ids that you would like to add to this bundle, they must be created in OrderProtection first

Example:
["product-1", "product-2", "product-2"]

Response

200
application/json
The product variant has been successfully updated.
status
string
required
Example:

"ok"