POST api/v1/social/connect/request

Request to connect with the specified user and add the member to the specified Pods. Max of 200 people per pod - pending invites count towards total Beta 0.4

Request Information

URI Parameters

None.

Body Parameters

ConnectionRequestModel
NameDescriptionTypeAdditional information
MemberId

integer

Required

Pods

Collection of integer

None.

Request Formats

application/json, text/json

Sample:
{
  "memberId": 1,
  "pods": [
    1,
    2
  ]
}

text/html, text/plain

Sample:
{"memberId":1,"pods":[1,2]}

application/xml, text/xml

Sample:
<ConnectionRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Last2Left.Services.Models">
  <MemberId>1</MemberId>
  <Pods xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
  </Pods>
</ConnectionRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Return HttpStatusCode

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, text/plain, application/xml, text/xml

Sample:

Sample not available.