Delete product
DELETE/subscriptions/products/:product_uuid
You cannot delete a product if it is part of an offering. You must detach the product from the offering first.
Request
Path Parameters
product_uuid UUIDrequired
The unique identifier of a product.
Responses
- 204
- 500
Success. The product details are removed.
Internal server error. There was a system failure in the platform.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
- Array [
- ]
errors Error[]required
status stringrequired
The HTTP response code of the error.
title stringrequired
A brief summary of the error.
detail string
Optional additional detail about the error.
meta object
Additional supporting meta data for the error.
{
  "errors": [
    {
      "status": 500,
      "title": "Internal server error",
      "detail": "An internal error has occurred.",
      "meta": {
        "missing_ids": [
          "e7d50bd5-1833-43c0-9848-f9d325b08be8"
        ]
      }
    }
  ]
}
{
  "errors": [
    {
      "title": "Internal Server Error",
      "status": "500"
    }
  ]
}
Loading...