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": "9d5a88a4-5800-4a34-9f73-96cd250ee2ab",
"Name": "sample string 2",
"Description": "sample string 3",
"CustomerGroup": {
"Id": "cf431987-0ca9-41f7-a97b-1d663c093039",
"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": "f3d8dd40-97f3-4031-8b32-74ddc08a4208",
"Name": "sample string 2",
"Description": "sample string 3",
"CustomerGroup": {
"Id": "488a7824-2192-4816-8bad-2c56a12e2c3e",
"Name": "sample string 2"
},
"Tags": [
"sample string 1",
"sample string 2"
],
"IsRecycled": true
}