POST api/contents/heads

Request Information

URI Parameters

None.

Body Parameters

ContentHeadDto
NameDescriptionTypeAdditional 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": "9cafac3e-9f45-451b-bb7d-8e35c8f1bbe2",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "CustomerGroup": {
    "Id": "381f8128-3709-470b-a3de-ec238c52087d",
    "Name": "sample string 2"
  },
  "Tags": [
    "sample string 1",
    "sample string 2"
  ],
  "IsRecycled": true
}

Response Information

Resource Description

ContentHeadDto
NameDescriptionTypeAdditional 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": "61f66b2d-6024-4b0e-8411-12d22640e9ce",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "CustomerGroup": {
    "Id": "e71543f8-b521-45fe-843d-1d6dbba868ce",
    "Name": "sample string 2"
  },
  "Tags": [
    "sample string 1",
    "sample string 2"
  ],
  "IsRecycled": true
}