GET api/v1/social/pods/get

Gets the list of Pods Beta 0.3 Beta 9/9: Added pod counts

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PodSummaryModel
NameDescriptionTypeAdditional information
PodMembersCount

integer

None.

Id

integer

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "podMembersCount": 1,
    "id": 2,
    "name": "sample string 3"
  },
  {
    "podMembersCount": 1,
    "id": 2,
    "name": "sample string 3"
  }
]

text/html, text/plain

Sample:
[{"podMembersCount":1,"id":2,"name":"sample string 3"},{"podMembersCount":1,"id":2,"name":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfPodSummaryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Last2Left.Services.Models">
  <PodSummaryModel>
    <Id>2</Id>
    <Name>sample string 3</Name>
    <PodMembersCount>1</PodMembersCount>
  </PodSummaryModel>
  <PodSummaryModel>
    <Id>2</Id>
    <Name>sample string 3</Name>
    <PodMembersCount>1</PodMembersCount>
  </PodSummaryModel>
</ArrayOfPodSummaryModel>