Telligent Community
Telligent Community
  • Site
  • User
  • Site
  • Search
  • User
Telligent Community 8.x
  • Verint Community
  • More
Telligent Community 8.x
API Documentation Create Media REST Endpoint
  • Ask the Community
  • User Documentation
  • API Documentation
  • Tags
  • More
  • Cancel
  • New
  • Telligent Community 8.5 Developer Documentation
  • -API Reference
    • +Email Template API Documentation
    • +In-Process API Documentation
    • +JavaScript API Documentation
    • Maintaining upgrade safety
    • +Plugin API Documentation
    • -REST API Documentation
      • +Abuse Appeal REST Endpoints
      • +Abuse Report REST Endpoints
      • +Abusive Content REST Endpoints
      • +Achievement REST Endpoints
      • +Activity Message REST Endpoints
      • +Activity Story REST Endpoints
      • +Activity Story Site Preference REST Endpoints
      • +Activity Story Types REST Endpoints
      • +Activity Story User Preference REST Endpoints
      • +Aggregate Tagged Content REST Endpoints
      • +Aggregate Tags REST Endpoints
      • +Batching REST Endpoints
      • +Blog Comment REST Endpoints
      • +Blog Contact Request REST Endpoints
      • +Blog Favorite REST Endpoints
      • +Blog Post REST Endpoints
      • +Blog Post Subscription REST Endpoints
      • +Blog Post Summary REST Endpoints
      • +Blog REST Endpoints
      • +Bookmark REST Endpoints
      • +Calendar REST Endpoints
      • +Cfs REST Endpoints
      • +Challenge REST Endpoints
      • +Comment REST Endpoints
      • +Content Conversion REST Endpoints
      • +Content Recommendation REST Endpoints
      • +Content REST Endpoints
      • +Content Tags REST Endpoints
      • +Content View REST Endpoints
      • +Conversation Message REST Endpoints
      • +Conversation REST Endpoints
      • +Conversion Target Applications REST Endpoints
      • +Conversion Target Content Types REST Endpoints
      • +Endpoint REST Endpoints
      • +Event Comments REST Endpoints
      • +Event Log REST Endpoints
      • +Events REST Endpoints
      • +Favorite REST Endpoints
      • +Feature REST Endpoints
      • +Follower REST Endpoints
      • +Following REST Endpoints
      • +Forum Favorite REST Endpoints
      • +Forum Reply REST Endpoints
      • +Forum REST Endpoints
      • +Forum Thread REST Endpoints
      • +Friendship REST Endpoints
      • +Gallery Favorite REST Endpoints
      • +Gallery REST Endpoints
      • +Generic Application REST Endpoints
      • +Generic Content REST Endpoints
      • +Geocoding REST Endpoints
      • +Group Author Quality Score REST Endpoints
      • +Group Avatar REST Endpoints
      • +Group Contact Request REST Endpoints
      • +Group REST Endpoints
      • +Group User REST Endpoints
      • +Hash Tag REST Endpoints
      • +Html REST Endpoints
      • +Idea REST Endpoints
      • +Idea Status REST Endpoints
      • +Idea Vote REST Endpoints
      • +Ignore Content Recommendation REST Endpoints
      • +Ignore User Recommendation REST Endpoints
      • +Info Result REST Endpoints
      • +Like REST Endpoints
      • +Media Comment REST Endpoints
      • -Media REST Endpoints
        • Create Media REST Endpoint
        • Delete Media REST Endpoint
        • List Media REST Endpoint
        • Show Media REST Endpoint
        • Update Media REST Endpoint
      • +Media Subscription REST Endpoints
      • +Mention REST Endpoints
      • +Mentionable REST Endpoints
      • +Node Permission REST Endpoints
      • +Notification Distribution Types REST Endpoints
      • +Notification Preference REST Endpoints
      • +Notification REST Endpoints
      • +Notification Types REST Endpoints
      • +O Auth REST Endpoints
      • +Permission REST Endpoints
      • +Poll Item REST Endpoints
      • +Poll Item Vote REST Endpoints
      • +Poll REST Endpoints
      • +Rated Item REST Endpoints
      • +Rating REST Endpoints
      • +Remote Proxy Information REST Endpoints
      • +Remote URL Entity REST Endpoints
      • +Remote URL REST Endpoints
      • +Remote Widget API REST Endpoints
      • +Reply Message REST Endpoints
      • +Role REST Endpoints
      • +Search Result REST Endpoints
      • +Status Message REST Endpoints
      • +System Notification REST Endpoints
      • +Text REST Endpoints
      • +Tour Tip REST Endpoints
      • +Ui REST Endpoints
      • +User Avatar REST Endpoints
      • +User Invitation REST Endpoints
      • +User Presence REST Endpoints
      • +User Profile Field Groups REST Endpoints
      • +User Profile Fields REST Endpoints
      • +User Recommendation REST Endpoints
      • +User REST Endpoints
      • +User Validation REST Endpoints
      • +Wiki Comment REST Endpoints
      • +Wiki Favorite REST Endpoints
      • +Wiki File REST Endpoints
      • +Wiki Page Comment Subscription REST Endpoints
      • +Wiki Page REST Endpoints
      • +Wiki Page Revision REST Endpoints
      • +Wiki Page Subscription REST Endpoints
      • +Wiki REST Endpoints
      • +Wiki Toc REST Endpoints
    • +Widget API Documentation
  • Getting started - development environment for 8.x
  • +Platform Topics/Features
  • Sample Applications and Extensions

Create Media REST Endpoint


URLs

POST api.ashx/v2/media/{mediagalleryid}/files.xml (or .json)

CREATE a media file.

Request Parameters

NameTypeDescriptionRequiredDefaultOptions
MediaGalleryIdint?Media Gallery IdRequired
NamestringNameRequired
DescriptionstringDescriptionOptional
ContentTypestringRequired when sending FileDataOptional
FileNamestringRequired when sending FileDataOptional
FileDataByte[]FileData, FileUrl or FileUploadContext is required.Optional
FileUploadContextstringFileData, FileUrl or FileUploadContext is required.Optional
FileUrlstringFileData, FileUrl or FileUploadContext is required.Optional
IsFeaturedbool?Default is false.Optional
FeaturedImagestringUsed to include a featured image when IsFeatured is true.Optional
TagsstringA comma separated list of tags.Optional
Previewbool?Specifies if the request is preview only.Optional
ExtendedAttributesRestExtendedAttributesExtended AttributesOptional

Example Requests

.Net (C#)

var webClient = new WebClient();

// replace the "admin" and "Admin's API key" with your valid user and apikey!
var adminKey = String.Format("{0}:{1}", "Admin's API Key", "admin");
var adminKeyBase64 = Convert.ToBase64String(Encoding.UTF8.GetBytes(adminKey));

webClient.Headers.Add("Rest-User-Token", adminKeyBase64);
var requestUrl = "http://mysite.com/api.ashx/v2/media/6/files.xml";

var values = new NameValueCollection();
values["Name"] = "name";

var xml = Encoding.UTF8.GetString(webClient.UploadValues(requestUrl, values));

Console.WriteLine(xml);

Widget Javascript

jQuery.telligent.evolution.post({
   url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/media/6/files.json',
   data: { 
      Name: 'name'
   },
   success: function(response) {

   }
});

Example Responses

XML

<?xml version="1.0" encoding="utf-16"?>
<Response>
  <Info>
    <Message>string</Message>
    <Message>string</Message>
  </Info>
  <Warnings>
    <Message>string</Message>
    <Message>string</Message>
  </Warnings>
  <Errors>
    <Message>string</Message>
    <Message>string</Message>
  </Errors>
  <Media>
    <ContentId>49fec544-6df7-4a82-872b-f8be586d5e9e</ContentId>
    <ContentTypeId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</ContentTypeId>
    <Id>6</Id>
    <MediaGalleryId>25</MediaGalleryId>
    <GroupId>8</GroupId>
    <Author>
      <Id>76</Id>
      <AvatarUrl>avatarurl</AvatarUrl>
      <DisplayName>displayname</DisplayName>
      <ProfileUrl>profileurl</ProfileUrl>
      <Username>username</Username>
      <CurrentStatus>
        <Id>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</Id>
        <Author>
          <Id>7</Id>
          <AvatarUrl>avatarurl</AvatarUrl>
          <DisplayName>displayname</DisplayName>
          <ProfileUrl>profileurl</ProfileUrl>
          <Username>username</Username>
          <CurrentStatus>
            <Id>6cdcf200-3bad-476d-af45-97b52545c337</Id>
            <Author>
              <Id />
              <AvatarUrl>avatarurl</AvatarUrl>
              <DisplayName>displayname</DisplayName>
              <ProfileUrl>profileurl</ProfileUrl>
              <Username>username</Username>
            </Author>
            <Body>body</Body>
            <CreatedDate>2012-01-04T00:00:00</CreatedDate>
            <ReplyCount>4</ReplyCount>
            <Group>
              <Id />
              <AvatarUrl>avatarurl</AvatarUrl>
              <DateCreated />
              <Description>description</Description>
              <Key>key</Key>
              <Name>name</Name>
              <Url>url</Url>
              <TotalMembers />
              <HasGroups>true</HasGroups>
              <GroupCount />
              <GroupType>grouptype</GroupType>
              <EnableGroupMessages>true</EnableGroupMessages>
              <EnableContact>true</EnableContact>
              <SearchUniqueId>searchuniqueid</SearchUniqueId>
              <ExtendedAttributes />
              <ContainerId>fe65240b-044c-4292-9946-f10e0361ecff</ContainerId>
            </Group>
            <AttachedUrl>attachedurl</AttachedUrl>
            <ContentId>6cdcf200-3bad-476d-af45-97b52545c337</ContentId>
            <ContentType>56f1a3ec-14bb-45c6-949f-ee7776d68c78</ContentType>
            <Url>url</Url>
            <Content>
              <ContentId>9ba1ec43-dc34-4e27-a579-4a0855144e2f</ContentId>
              <ContentTypeId>e3715662-2528-4ba1-84a7-bfcd9d548f80</ContentTypeId>
              <CreatedDate>2012-05-02T00:00:00</CreatedDate>
              <HtmlName>htmlname</HtmlName>
              <HtmlDescription>htmldescription</HtmlDescription>
              <Url>url</Url>
              <AvatarUrl>avatarurl</AvatarUrl>
            </Content>
          </CurrentStatus>
        </Author>
        <Body>body</Body>
        <CreatedDate>2012-06-04T00:00:00</CreatedDate>
        <ReplyCount>27</ReplyCount>
        <Group>
          <Id>112</Id>
          <AvatarUrl>avatarurl</AvatarUrl>
          <DateCreated>2011-05-28T00:00:00</DateCreated>
          <Description>description</Description>
          <Key>key</Key>
          <Name>name</Name>
          <ParentGroupId>32</ParentGroupId>
          <Url>url</Url>
          <TotalMembers>52</TotalMembers>
          <HasGroups>true</HasGroups>
          <GroupCount>19</GroupCount>
          <GroupType>grouptype</GroupType>
          <EnableGroupMessages>true</EnableGroupMessages>
          <EnableContact>true</EnableContact>
          <SearchUniqueId>searchuniqueid</SearchUniqueId>
          <ExtendedAttributes>
            <key>value</key>
            <key>value</key>
          </ExtendedAttributes>
          <ContainerId>b04540ec-eb38-4fa1-b7bb-e3fde05401b4</ContainerId>
          <Container>
            <ContainerId>44df201a-07e6-42eb-96c7-8ce7ce35aab6</ContainerId>
            <ContainerTypeId>49fec544-6df7-4a82-872b-f8be586d5e9e</ContainerTypeId>
            <HtmlName>htmlname</HtmlName>
            <Url>url</Url>
            <AvatarUrl>avatarurl</AvatarUrl>
          </Container>
        </Group>
        <AttachedUrl>attachedurl</AttachedUrl>
        <ContentId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</ContentId>
        <ContentType>56f1a3ec-14bb-45c6-949f-ee7776d68c78</ContentType>
        <Url>url</Url>
        <Content>
          <CreatedByUser>
            <Id>18</Id>
            <AvatarUrl>avatarurl</AvatarUrl>
            <DisplayName>displayname</DisplayName>
            <ProfileUrl>profileurl</ProfileUrl>
            <Username>username</Username>
            <CurrentStatus>
              <Id>2d525bad-c4df-470d-a193-a1c6d66e5c3e</Id>
              <Body>body</Body>
              <CreatedDate />
              <ReplyCount>61</ReplyCount>
              <AttachedUrl>attachedurl</AttachedUrl>
              <ContentId>2d525bad-c4df-470d-a193-a1c6d66e5c3e</ContentId>
              <ContentType>56f1a3ec-14bb-45c6-949f-ee7776d68c78</ContentType>
              <Url>url</Url>
            </CurrentStatus>
          </CreatedByUser>
          <ContentId>9ba1ec43-dc34-4e27-a579-4a0855144e2f</ContentId>
          <ContentTypeId>e3715662-2528-4ba1-84a7-bfcd9d548f80</ContentTypeId>
          <CreatedDate>2011-12-09T00:00:00</CreatedDate>
          <HtmlName>htmlname</HtmlName>
          <HtmlDescription>htmldescription</HtmlDescription>
          <Url>url</Url>
          <AvatarUrl>avatarurl</AvatarUrl>
          <Application>
            <ApplicationId>6cdcf200-3bad-476d-af45-97b52545c337</ApplicationId>
            <ApplicationTypeId>b04540ec-eb38-4fa1-b7bb-e3fde05401b4</ApplicationTypeId>
            <HtmlName>htmlname</HtmlName>
            <HtmlDescription>htmldescription</HtmlDescription>
            <Url>url</Url>
            <AvatarUrl>avatarurl</AvatarUrl>
            <Container>
              <ContainerId>44df201a-07e6-42eb-96c7-8ce7ce35aab6</ContainerId>
              <ContainerTypeId>49fec544-6df7-4a82-872b-f8be586d5e9e</ContainerTypeId>
              <HtmlName>htmlname</HtmlName>
              <Url>url</Url>
              <AvatarUrl>avatarurl</AvatarUrl>
            </Container>
          </Application>
        </Content>
      </CurrentStatus>
    </Author>
    <Date>2012-03-29T00:00:00</Date>
    <Title>title</Title>
    <Description>description</Description>
    <Tags>
      <Tag>value</Tag>
      <Tag>value</Tag>
    </Tags>
    <Url>url</Url>
    <IsApproved>true</IsApproved>
    <IsFeatured>true</IsFeatured>
    <FeaturedImage>featuredimage</FeaturedImage>
    <File>
      <Date>2012-04-19T00:00:00</Date>
      <ContentType>contenttype</ContentType>
      <FileName>filename</FileName>
      <FileSize>6</FileSize>
      <FileUrl>fileurl</FileUrl>
      <IsRemoteAttachment>true</IsRemoteAttachment>
    </File>
    <CommentCount>25</CommentCount>
    <Views>8</Views>
    <Downloads>4</Downloads>
    <EmbedCode>embedcode</EmbedCode>
    <RatingCount>7</RatingCount>
    <RatingSum>27</RatingSum>
    <SearchUniqueId>searchuniqueid</SearchUniqueId>
    <ExtendedAttributes>
      <key>value</key>
      <key>value</key>
    </ExtendedAttributes>
    <Content>
      <CreatedByUser>
        <Id>6</Id>
        <AvatarUrl>avatarurl</AvatarUrl>
        <DisplayName>displayname</DisplayName>
        <ProfileUrl>profileurl</ProfileUrl>
        <Username>username</Username>
        <CurrentStatus>
          <Id>2d525bad-c4df-470d-a193-a1c6d66e5c3e</Id>
          <Author>
            <Id>52</Id>
            <AvatarUrl>avatarurl</AvatarUrl>
            <DisplayName>displayname</DisplayName>
            <ProfileUrl>profileurl</ProfileUrl>
            <Username>username</Username>
            <CurrentStatus>
              <Id>fe65240b-044c-4292-9946-f10e0361ecff</Id>
              <Body>body</Body>
              <CreatedDate />
              <ReplyCount>32</ReplyCount>
              <AttachedUrl>attachedurl</AttachedUrl>
              <ContentId>fe65240b-044c-4292-9946-f10e0361ecff</ContentId>
              <ContentType>56f1a3ec-14bb-45c6-949f-ee7776d68c78</ContentType>
              <Url>url</Url>
            </CurrentStatus>
          </Author>
          <Body>body</Body>
          <CreatedDate>2012-01-16T00:00:00</CreatedDate>
          <ReplyCount>19</ReplyCount>
          <Group>
            <Id>76</Id>
            <AvatarUrl>avatarurl</AvatarUrl>
            <DateCreated>2012-01-04T00:00:00</DateCreated>
            <Description>description</Description>
            <Key>key</Key>
            <Name>name</Name>
            <ParentGroupId>112</ParentGroupId>
            <Url>url</Url>
            <TotalMembers>61</TotalMembers>
            <HasGroups>true</HasGroups>
            <GroupCount>18</GroupCount>
            <GroupType>grouptype</GroupType>
            <EnableGroupMessages>true</EnableGroupMessages>
            <EnableContact>true</EnableContact>
            <SearchUniqueId>searchuniqueid</SearchUniqueId>
            <ExtendedAttributes />
            <ContainerId>bd519379-b61f-4e2f-b0f9-c0f28c5cceb1</ContainerId>
            <Container>
              <ContainerId>9ba1ec43-dc34-4e27-a579-4a0855144e2f</ContainerId>
              <ContainerTypeId>e3715662-2528-4ba1-84a7-bfcd9d548f80</ContainerTypeId>
              <HtmlName>htmlname</HtmlName>
              <Url>url</Url>
              <AvatarUrl>avatarurl</AvatarUrl>
            </Container>
          </Group>
          <AttachedUrl>attachedurl</AttachedUrl>
          <ContentId>2d525bad-c4df-470d-a193-a1c6d66e5c3e</ContentId>
          <ContentType>56f1a3ec-14bb-45c6-949f-ee7776d68c78</ContentType>
          <Url>url</Url>
          <Content>
            <CreatedByUser>
              <Id />
              <AvatarUrl>avatarurl</AvatarUrl>
              <DisplayName>displayname</DisplayName>
              <ProfileUrl>profileurl</ProfileUrl>
              <Username>username</Username>
            </CreatedByUser>
            <ContentId>44df201a-07e6-42eb-96c7-8ce7ce35aab6</ContentId>
            <ContentTypeId>49fec544-6df7-4a82-872b-f8be586d5e9e</ContentTypeId>
            <CreatedDate>2012-05-02T00:00:00</CreatedDate>
            <HtmlName>htmlname</HtmlName>
            <HtmlDescription>htmldescription</HtmlDescription>
            <Url>url</Url>
            <AvatarUrl>avatarurl</AvatarUrl>
            <Application>
              <ApplicationId>9f5a6721-639d-4e1d-ab6a-ce63b7750f46</ApplicationId>
              <ApplicationTypeId>fe65240b-044c-4292-9946-f10e0361ecff</ApplicationTypeId>
              <HtmlName>htmlname</HtmlName>
              <HtmlDescription>htmldescription</HtmlDescription>
              <Url>url</Url>
              <AvatarUrl>avatarurl</AvatarUrl>
            </Application>
          </Content>
        </CurrentStatus>
      </CreatedByUser>
      <ContentId>bd519379-b61f-4e2f-b0f9-c0f28c5cceb1</ContentId>
      <ContentTypeId>9ba1ec43-dc34-4e27-a579-4a0855144e2f</ContentTypeId>
      <CreatedDate>2012-06-04T00:00:00</CreatedDate>
      <HtmlName>htmlname</HtmlName>
      <HtmlDescription>htmldescription</HtmlDescription>
      <Url>url</Url>
      <AvatarUrl>avatarurl</AvatarUrl>
      <Application>
        <ApplicationId>e3715662-2528-4ba1-84a7-bfcd9d548f80</ApplicationId>
        <ApplicationTypeId>6cdcf200-3bad-476d-af45-97b52545c337</ApplicationTypeId>
        <HtmlName>htmlname</HtmlName>
        <HtmlDescription>htmldescription</HtmlDescription>
        <Url>url</Url>
        <AvatarUrl>avatarurl</AvatarUrl>
        <Container>
          <ContainerId>b04540ec-eb38-4fa1-b7bb-e3fde05401b4</ContainerId>
          <ContainerTypeId>44df201a-07e6-42eb-96c7-8ce7ce35aab6</ContainerTypeId>
          <HtmlName>htmlname</HtmlName>
          <Url>url</Url>
          <AvatarUrl>avatarurl</AvatarUrl>
        </Container>
      </Application>
    </Content>
  </Media>
</Response>

JSON

{
  "Media": {
    "ContentId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
    "ContentTypeId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",
    "Id": 6,
    "MediaGalleryId": 25,
    "GroupId": 8,
    "Author": {
      "AvatarUrl": "avatarurl",
      "DisplayName": "displayname",
      "ProfileUrl": "profileurl",
      "Username": "username",
      "CurrentStatus": {
        "Author": {
          "AvatarUrl": "avatarurl",
          "DisplayName": "displayname",
          "ProfileUrl": "profileurl",
          "Username": "username",
          "CurrentStatus": {
            "Author": {
              "AvatarUrl": "avatarurl",
              "DisplayName": "displayname",
              "ProfileUrl": "profileurl",
              "Username": "username",
              "CurrentStatus": null,
              "Id": null
            },
            "Body": "body",
            "CreatedDate": "2012-01-04T00:00:00",
            "ReplyCount": 4,
            "Group": {
              "AvatarUrl": "avatarurl",
              "DateCreated": null,
              "Description": "description",
              "Key": "key",
              "Name": "name",
              "Url": "url",
              "TotalMembers": null,
              "HasGroups": true,
              "GroupCount": null,
              "GroupType": "grouptype",
              "EnableGroupMessages": true,
              "EnableContact": true,
              "SearchUniqueId": "searchuniqueid",
              "IsEnabled": true,
              "ExtendedAttributes": [],
              "ContainerId": "fe65240b-044c-4292-9946-f10e0361ecff",
              "ContainerTypeId": "23b05a61-c3e5-4451-90d9-bfa00453bce4",
              "Container": null,
              "Id": null
            },
            "AttachedUrl": "attachedurl",
            "HasReplies": true,
            "ContentId": "6cdcf200-3bad-476d-af45-97b52545c337",
            "ContentType": "56f1a3ec-14bb-45c6-949f-ee7776d68c78",
            "Url": "url",
            "Content": {
              "CreatedByUser": null,
              "ContentId": "9ba1ec43-dc34-4e27-a579-4a0855144e2f",
              "ContentTypeId": "e3715662-2528-4ba1-84a7-bfcd9d548f80",
              "CreatedDate": "2012-05-02T00:00:00",
              "HtmlName": "htmlname",
              "HtmlDescription": "htmldescription",
              "Url": "url",
              "AvatarUrl": "avatarurl",
              "Application": null
            },
            "Id": "6cdcf200-3bad-476d-af45-97b52545c337"
          },
          "Id": 7
        },
        "Body": "body",
        "CreatedDate": "2012-06-04T00:00:00",
        "ReplyCount": 27,
        "Group": {
          "AvatarUrl": "avatarurl",
          "DateCreated": "2011-05-28T00:00:00",
          "Description": "description",
          "Key": "key",
          "Name": "name",
          "ParentGroupId": 32,
          "Url": "url",
          "TotalMembers": 52,
          "HasGroups": true,
          "GroupCount": 19,
          "GroupType": "grouptype",
          "EnableGroupMessages": true,
          "EnableContact": true,
          "SearchUniqueId": "searchuniqueid",
          "IsEnabled": true,
          "ExtendedAttributes": [
            {
              "Key": "key",
              "Value": "value"
            },
            {
              "Key": "key",
              "Value": "value"
            }
          ],
          "ContainerId": "b04540ec-eb38-4fa1-b7bb-e3fde05401b4",
          "ContainerTypeId": "23b05a61-c3e5-4451-90d9-bfa00453bce4",
          "Container": {
            "ContainerId": "44df201a-07e6-42eb-96c7-8ce7ce35aab6",
            "ContainerTypeId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
            "HtmlName": "htmlname",
            "Url": "url",
            "AvatarUrl": "avatarurl"
          },
          "Id": 112
        },
        "AttachedUrl": "attachedurl",
        "HasReplies": true,
        "ContentId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",
        "ContentType": "56f1a3ec-14bb-45c6-949f-ee7776d68c78",
        "Url": "url",
        "Content": {
          "CreatedByUser": {
            "AvatarUrl": "avatarurl",
            "DisplayName": "displayname",
            "ProfileUrl": "profileurl",
            "Username": "username",
            "CurrentStatus": {
              "Author": null,
              "Body": "body",
              "CreatedDate": null,
              "ReplyCount": 61,
              "Group": null,
              "AttachedUrl": "attachedurl",
              "HasReplies": null,
              "ContentId": "2d525bad-c4df-470d-a193-a1c6d66e5c3e",
              "ContentType": "56f1a3ec-14bb-45c6-949f-ee7776d68c78",
              "Url": "url",
              "Content": null,
              "Id": "2d525bad-c4df-470d-a193-a1c6d66e5c3e"
            },
            "Id": 18
          },
          "ContentId": "9ba1ec43-dc34-4e27-a579-4a0855144e2f",
          "ContentTypeId": "e3715662-2528-4ba1-84a7-bfcd9d548f80",
          "CreatedDate": "2011-12-09T00:00:00",
          "HtmlName": "htmlname",
          "HtmlDescription": "htmldescription",
          "Url": "url",
          "AvatarUrl": "avatarurl",
          "Application": {
            "ApplicationId": "6cdcf200-3bad-476d-af45-97b52545c337",
            "ApplicationTypeId": "b04540ec-eb38-4fa1-b7bb-e3fde05401b4",
            "HtmlName": "htmlname",
            "HtmlDescription": "htmldescription",
            "Url": "url",
            "AvatarUrl": "avatarurl",
            "Container": {
              "ContainerId": "44df201a-07e6-42eb-96c7-8ce7ce35aab6",
              "ContainerTypeId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
              "HtmlName": "htmlname",
              "Url": "url",
              "AvatarUrl": "avatarurl"
            }
          }
        },
        "Id": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46"
      },
      "Id": 76
    },
    "Date": "2012-03-29T00:00:00",
    "Title": "title",
    "Description": "description",
    "Tags": [
      {
        "Value": "value"
      },
      {
        "Value": "value"
      }
    ],
    "Url": "url",
    "IsApproved": true,
    "IsFeatured": true,
    "FeaturedImage": "featuredimage",
    "File": {
      "Date": "2012-04-19T00:00:00",
      "ContentType": "contenttype",
      "FileName": "filename",
      "FileSize": 6,
      "FileUrl": "fileurl",
      "IsRemoteAttachment": true
    },
    "CommentCount": 25,
    "Views": 8,
    "Downloads": 4,
    "EmbedCode": "embedcode",
    "RatingCount": 7,
    "RatingSum": 27,
    "SearchUniqueId": "searchuniqueid",
    "ExtendedAttributes": [
      {
        "Key": "key",
        "Value": "value"
      },
      {
        "Key": "key",
        "Value": "value"
      }
    ],
    "Content": {
      "CreatedByUser": {
        "AvatarUrl": "avatarurl",
        "DisplayName": "displayname",
        "ProfileUrl": "profileurl",
        "Username": "username",
        "CurrentStatus": {
          "Author": {
            "AvatarUrl": "avatarurl",
            "DisplayName": "displayname",
            "ProfileUrl": "profileurl",
            "Username": "username",
            "CurrentStatus": {
              "Author": null,
              "Body": "body",
              "CreatedDate": null,
              "ReplyCount": 32,
              "Group": null,
              "AttachedUrl": "attachedurl",
              "HasReplies": null,
              "ContentId": "fe65240b-044c-4292-9946-f10e0361ecff",
              "ContentType": "56f1a3ec-14bb-45c6-949f-ee7776d68c78",
              "Url": "url",
              "Content": null,
              "Id": "fe65240b-044c-4292-9946-f10e0361ecff"
            },
            "Id": 52
          },
          "Body": "body",
          "CreatedDate": "2012-01-16T00:00:00",
          "ReplyCount": 19,
          "Group": {
            "AvatarUrl": "avatarurl",
            "DateCreated": "2012-01-04T00:00:00",
            "Description": "description",
            "Key": "key",
            "Name": "name",
            "ParentGroupId": 112,
            "Url": "url",
            "TotalMembers": 61,
            "HasGroups": true,
            "GroupCount": 18,
            "GroupType": "grouptype",
            "EnableGroupMessages": true,
            "EnableContact": true,
            "SearchUniqueId": "searchuniqueid",
            "IsEnabled": true,
            "ExtendedAttributes": [],
            "ContainerId": "bd519379-b61f-4e2f-b0f9-c0f28c5cceb1",
            "ContainerTypeId": "23b05a61-c3e5-4451-90d9-bfa00453bce4",
            "Container": {
              "ContainerId": "9ba1ec43-dc34-4e27-a579-4a0855144e2f",
              "ContainerTypeId": "e3715662-2528-4ba1-84a7-bfcd9d548f80",
              "HtmlName": "htmlname",
              "Url": "url",
              "AvatarUrl": "avatarurl"
            },
            "Id": 76
          },
          "AttachedUrl": "attachedurl",
          "HasReplies": true,
          "ContentId": "2d525bad-c4df-470d-a193-a1c6d66e5c3e",
          "ContentType": "56f1a3ec-14bb-45c6-949f-ee7776d68c78",
          "Url": "url",
          "Content": {
            "CreatedByUser": {
              "AvatarUrl": "avatarurl",
              "DisplayName": "displayname",
              "ProfileUrl": "profileurl",
              "Username": "username",
              "CurrentStatus": null,
              "Id": null
            },
            "ContentId": "44df201a-07e6-42eb-96c7-8ce7ce35aab6",
            "ContentTypeId": "49fec544-6df7-4a82-872b-f8be586d5e9e",
            "CreatedDate": "2012-05-02T00:00:00",
            "HtmlName": "htmlname",
            "HtmlDescription": "htmldescription",
            "Url": "url",
            "AvatarUrl": "avatarurl",
            "Application": {
              "ApplicationId": "9f5a6721-639d-4e1d-ab6a-ce63b7750f46",
              "ApplicationTypeId": "fe65240b-044c-4292-9946-f10e0361ecff",
              "HtmlName": "htmlname",
              "HtmlDescription": "htmldescription",
              "Url": "url",
              "AvatarUrl": "avatarurl",
              "Container": null
            }
          },
          "Id": "2d525bad-c4df-470d-a193-a1c6d66e5c3e"
        },
        "Id": 6
      },
      "ContentId": "bd519379-b61f-4e2f-b0f9-c0f28c5cceb1",
      "ContentTypeId": "9ba1ec43-dc34-4e27-a579-4a0855144e2f",
      "CreatedDate": "2012-06-04T00:00:00",
      "HtmlName": "htmlname",
      "HtmlDescription": "htmldescription",
      "Url": "url",
      "AvatarUrl": "avatarurl",
      "Application": {
        "ApplicationId": "e3715662-2528-4ba1-84a7-bfcd9d548f80",
        "ApplicationTypeId": "6cdcf200-3bad-476d-af45-97b52545c337",
        "HtmlName": "htmlname",
        "HtmlDescription": "htmldescription",
        "Url": "url",
        "AvatarUrl": "avatarurl",
        "Container": {
          "ContainerId": "b04540ec-eb38-4fa1-b7bb-e3fde05401b4",
          "ContainerTypeId": "44df201a-07e6-42eb-96c7-8ce7ce35aab6",
          "HtmlName": "htmlname",
          "Url": "url",
          "AvatarUrl": "avatarurl"
        }
      }
    }
  },
  "Info": [
    "string",
    "string"
  ],
  "Warnings": [
    "string",
    "string"
  ],
  "Errors": [
    "string",
    "string"
  ]
}

  • Share
  • History
  • More
  • Cancel
Related
Recommended
  • Telligent
  • Professional Services
  • Submit a Support Ticket
  • Become a Partner
  • Request a Demo
  • Contact Us

About
Privacy Policy
Terms of use
Copyright 2019 Verint, Inc.
Powered by Telligent Community