PUT api/contents/heads/{headId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| headId | globally unique identifier |
Required |
Body Parameters
ContentHeadDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| CustomerGroup | NamedItem |
None. |
|
| Tags | Collection of string |
None. |
|
| IsRecycled | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "29080488-cd5a-4148-851b-8ea4ed044ca5",
"Name": "sample string 2",
"Description": "sample string 3",
"CustomerGroup": {
"Id": "6d2d4c9a-2f36-407c-b852-daf2c4fe8749",
"Name": "sample string 2"
},
"Tags": [
"sample string 1",
"sample string 2"
],
"IsRecycled": true
}
Response Information
Resource Description
ContentHeadDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| CustomerGroup | NamedItem |
None. |
|
| Tags | Collection of string |
None. |
|
| IsRecycled | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "a5ba5eb5-d423-460b-9664-f80b9b018ada",
"Name": "sample string 2",
"Description": "sample string 3",
"CustomerGroup": {
"Id": "8427824c-5697-451a-94f3-38ff3f30116a",
"Name": "sample string 2"
},
"Tags": [
"sample string 1",
"sample string 2"
],
"IsRecycled": true
}