Skip to main content
POST
/
v1.0
/
products
/
update
Update product details
curl --request POST \
  --url https://api.example.com/v1.0/products/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "SKU": "<string>",
  "Description": "<string>",
  "AggregatorId": "<string>",
  "DistributorId": "<string>",
  "Type": "<string>",
  "SubType": "<string>",
  "Cost": 123,
  "BillingFrequency": "<string>",
  "Active": true,
  "ProductId": "<string>"
}
'

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.

Body

Update_Product_Request object

SKU
string | null
Description
string | null
AggregatorId
string | null
DistributorId
string | null
Type
string | null
SubType
string | null
Cost
number<double>
BillingFrequency
string | null
Active
boolean
ProductId
string | null

Response

200

Success