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": "5e489624-e1ee-4384-8afa-1652634c27b1",
"Name": "sample string 2",
"Description": "sample string 3",
"CustomerGroup": {
"Id": "ee93f644-94c1-45f6-a459-6d3b475124ed",
"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": "540fa625-5492-4222-81bc-cbe7c8755cd3",
"Name": "sample string 2",
"Description": "sample string 3",
"CustomerGroup": {
"Id": "a937782b-06d2-4bf6-8c59-ba8a417faf0e",
"Name": "sample string 2"
},
"Tags": [
"sample string 1",
"sample string 2"
],
"IsRecycled": true
}