POST api/SocialWallFolder

Request Information

URI Parameters

None.

Body Parameters

SocialWallFolderDto
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Ordinality

integer

None.

ClientId

integer

None.

SocialWalls

Collection of ListItemSocialWallDto

None.

ParentFolder

ListItemDto

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "id": 1,
  "name": "sample string 2",
  "ordinality": 3,
  "clientId": 4,
  "socialWalls": [
    {
      "socialWallFolderId": 1,
      "created": "2024-10-04T00:47:14.5895561+00:00",
      "name": "sample string 2",
      "id": 3
    },
    {
      "socialWallFolderId": 1,
      "created": "2024-10-04T00:47:14.5895561+00:00",
      "name": "sample string 2",
      "id": 3
    }
  ],
  "parentFolder": {
    "name": "sample string 1",
    "id": 2
  }
}

text/plain

Sample:
{"id":1,"name":"sample string 2","ordinality":3,"clientId":4,"socialWalls":[{"socialWallFolderId":1,"created":"2024-10-04T00:47:14.5895561+00:00","name":"sample string 2","id":3},{"socialWallFolderId":1,"created":"2024-10-04T00:47:14.5895561+00:00","name":"sample string 2","id":3}],"parentFolder":{"name":"sample string 1","id":2}}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/plain

Sample:

Sample not available.