Update a service product

patch

/services/rest/connect/v1.4/serviceProducts/{id}

Request

Path Parameters
Body ()
The hierarchical service product that provides an option to group answers and incidents for better organization and refined searching in the knowledge base.
Root Schema : serviceProducts
Type: object
The hierarchical service product that provides an option to group answers and incidents for better organization and refined searching in the knowledge base.
Show Source
Nested Schema : namedIDs-serviceProducts-adminVisibleInterfaces
Type: object
The named ID that can be included in a list.
Show Source
  • Minimum Value: 1
    Maximum Value: 9223372036854776000
    The unique identifier of the object. This is the key for the list entry.
  • Maximum Length: 255
    The name used to look up the object.
Nested Schema : serviceProducts-descriptions
Type: object
The language-specific string used for localization. Labels are assembled in a list that is associated with a particular text field.
Show Source
Nested Schema : namedIDs-serviceProducts-endUserVisibleInterfaces
Type: object
The named ID that can be included in a list.
Show Source
  • Minimum Value: 1
    Maximum Value: 9223372036854776000
    The unique identifier of the object. This is the key for the list entry.
  • Maximum Length: 255
    The name used to look up the object.
Nested Schema : serviceProducts-names
Type: object
The language-specific strings used for localization of fields. The label text cannot be empty or null. The labels are assembled in a list associated with a particular text field.
Show Source
Nested Schema : productHierarchy
Type: array
The hierarchical service product that provides an option to group answers and incidents for better organization and refined searching in the knowledge base. It is the reference to a resource in 'serviceProducts' collection. Only ID or lookupName can be provided to specify the resources.
Show Source
Nested Schema : namedIDs-serviceProducts-descriptions-language
Type: object
An ID which has an associated name string. These IDs can be set by either value or name. If the name cannot uniquely determine the value, an error is generated.
Show Source
Nested Schema : namedIDs-serviceProducts-names-language
Type: object
An ID which has an associated name string. These IDs can be set by either value or name. If the name cannot uniquely determine the value, an error is generated.
Show Source
Nested Schema : items
Type: object
Back to Top

Response

Default Response

Back to Top

Examples

Use the PATCH operation with the following syntax to partially update a service product object:

https://your_site_interface/services/rest/connect/version/serviceProducts/
service_product_id

Include the data to be updated in the request body. Only the fields present in the request JSON data are updated. All other fields remain the same.

Request URI example

https://mysite.example.com/services/rest/connect/v1.4/serviceProducts/65

Request body example

{
"names": [
    {
        "labelText": "Iguanas",
        "language": {
            "id": 1}
    }
    ]
}

Response example

The status 200 OK is returned. Then running this ROQL tabular query on service product records:

https://mysite.example.com/services/rest/connect/v1.4/
queryResults?query=select id,name from serviceProducts where id>=60

returns the following:

{
  "items": [
    {
      "tableName": "serviceProducts",
      "count": 5,
      "columnNames": [
        "id",
        "name"
      ],
      "rows": [
        [
          "60",
          "ISFJ Series"
        ],
        [
          "62",
          "ISFJ 1550"
        ],
        [
          "63",
          "LM 800"
        ],
        [
          "64",
          "Cats"
        ],
        [
          "65",
          "Iguanas"
        ]
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "href": "https://crr-151101-sql-b217h.qb.lan/services/rest/connect/v1.4/queryResults?query=select%20id,name%20from%20serviceProducts%20where%20id%3E=60"
    },
    {
      "rel": "canonical",
      "href": "https://crr-151101-sql-b217h.qb.lan/services/rest/connect/v1.4/queryResults"
    },
    {
      "rel": "describedby",
      "href": "https://crr-151101-sql-b217h.qb.lan/services/rest/connect/v1.4/metadata-catalog/queryResults",
      "mediaType": "application/schema+json"
    }
  ]
}

Note:

Service product 65 used to be Cats, a duplicate of service product 64.
Back to Top