Tigris Social Api

<back to all web services

GetAllTags

The following routes are available for this service:
GET/Posts/TagsReturn tags for given Tigris User Id.
Parameters:
NameParameterData TypeRequiredDescription
IdpathstringYesThe Id field is a GUID uniquely identifying the Tigris User.

To override the Content-type in your clients HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/GetAllTags HTTP/1.1 
Host: api.tigris.mymitchell.com 
Content-Type: application/xml
Content-Length: length

<GetAllTags xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mi.Sno.Tigris.TigrisApi.ServiceModel.InputModels.Posts">
  <Id>00000000-0000-0000-0000-000000000000</Id>
</GetAllTags>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<ArrayOfPostTagDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mi.Sno.Tigris.TigrisApi.ServiceModel.Types">
  <PostTagDto>
    <CreatedTime>0001-01-01T00:00:00</CreatedTime>
    <Description>String</Description>
    <Id>00000000-0000-0000-0000-000000000000</Id>
    <Name>String</Name>
    <Posts>
      <PostSummaryDto>
        <AuthorId>00000000-0000-0000-0000-000000000000</AuthorId>
        <Content>String</Content>
        <ContextId>00000000-0000-0000-0000-000000000000</ContextId>
        <CreatedTime>0001-01-01T00:00:00</CreatedTime>
        <Id>00000000-0000-0000-0000-000000000000</Id>
        <IsPrivate>false</IsPrivate>
        <MessageType>0</MessageType>
        <UpdatedTime>0001-01-01T00:00:00</UpdatedTime>
      </PostSummaryDto>
    </Posts>
    <TagTypeId>0</TagTypeId>
    <UpdatedTime>0001-01-01T00:00:00</UpdatedTime>
  </PostTagDto>
</ArrayOfPostTagDto>