Add

bundle Product Option Management V1Save Post

post

Add new option for bundle product

Header parameters
Content-TypestringOptionalExample: application/json
Body
objectOptionalExample: {"option":{"option_id":"<integer>","title":"<string>","required":"<boolean>","type":"<string>","position":"<integer>","sku":"<string>","product_links":[{"value":"<Error: Too many levels of nesting to fake this schema>"},{"value":"<Error: Too many levels of nesting to fake this schema>"}],"extension_attributes":"<object>"}}
Responses
200

OK

application/json
Responseobject
post
POST /V1/bundle-products/options/add HTTP/1.1
Host: {{baseurl}}
Content-Type: application/json
Accept: */*
Content-Length: 324

{
  "option": {
    "option_id": "<integer>",
    "title": "<string>",
    "required": "<boolean>",
    "type": "<string>",
    "position": "<integer>",
    "sku": "<string>",
    "product_links": [
      {
        "value": "<Error: Too many levels of nesting to fake this schema>"
      },
      {
        "value": "<Error: Too many levels of nesting to fake this schema>"
      }
    ],
    "extension_attributes": "<object>"
  }
}
66689314