PUT
/
v2
/
products
/
{productId}
curl --request PUT \
  --url https://api.production.orderprotection.com/v2/products/{productId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "123456",
  "status": "ACTIVE",
  "description": "This product is super awesome and will solve all of your problems",
  "sku": "123456",
  "price": 22.22,
  "tax": "123456",
  "inventoryType": "FULL",
  "inventoryQuantity": "123456",
  "productImage": "https://somedomain.com/image.png",
  "productType": "SIMPLE",
  "inStock": true
}'
{
  "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
name
string

This is the name of the product.

Example:

"123456"

status
string

Status of the variant

Example:

"ACTIVE"

description
string

This is the description of the product. This will help with making sure the correct product is chosen

Example:

"This product is super awesome and will solve all of your problems"

sku
string

SKU of the product

Example:

"123456"

price
number

Price of the product

Example:

22.22

tax
number

Unique ID for the product

Example:

"123456"

inventoryType
enum<string>

What kind of inventory tracking we will do

Available options:
FULL,
SIMPLE
Example:

"FULL"

inventoryQuantity
number

This is the amount remaining in stock. This is used if you are using the FULL inventory type

Example:

"123456"

productImage
string

This is the url to show a product image.

Example:

"https://somedomain.com/image.png"

productType
enum<string>

This tells us if this product is a bundle or a simple product with variants

Available options:
FULL,
SIMPLE
Example:

"SIMPLE"

inStock
boolean

If using the SIMPLE mode you just simply tell us if the product is in stock or not

Example:

true

Response

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

"ok"