Brand
Treatment-medication
Update V2

Update V2

PUT endpoint for /brand/treatment-medication/update-v2 in brand category

Overview

  • Method: PUT
  • Path: /brand/treatment-medication/update-v2
  • Tags: brand

Parameters

No parameters required.

Request Body

No request body required.

Responses

200

Successful response

Content Type: application/json

{
  "type": "object",
  "properties": {
    "productVariant": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "sku": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "productVariant",
    "title",
    "sku",
    "created_at",
    "updated_at"
  ]
}

400

Bad Request

Content Type: application/json

{
  "type": "object",
  "properties": {
    "message": {
      "type": "string"
    },
    "error": {
      "type": "string"
    }
  },
  "required": [
    "message"
  ]
}

401

Unauthorized

404

Not Found

500

Internal Server Error

Example Usage

curl -X PUT \
  http://localhost:9000/brand/treatment-medication/update-v2 \
  -H "Content-Type: application/json" \
  

Interactive Testing

You can test this endpoint interactively in the Swagger UI (opens in a new tab).