POST api/Collections/MemberContribution

Request Information

URI Parameters

None.

Body Parameters

MemberContributionRequest
NameDescriptionTypeAdditional information
PhoneNumber

string

None.

Network

string

None.

RevenueSource

string

None.

Amount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "PhoneNumber": "sample string 1",
  "Network": "sample string 2",
  "RevenueSource": "sample string 3",
  "Amount": 4.0
}

application/xml, text/xml

Sample:
<MemberContributionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECollectionsServices.Models">
  <Amount>4</Amount>
  <Network>sample string 2</Network>
  <PhoneNumber>sample string 1</PhoneNumber>
  <RevenueSource>sample string 3</RevenueSource>
</MemberContributionRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MemberContributionResponse
NameDescriptionTypeAdditional information
ResponseCode

string

None.

ResponseStatus

string

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": "sample string 1",
  "ResponseStatus": "sample string 2",
  "ResponseMessage": "sample string 3"
}

application/xml, text/xml

Sample:
<MemberContributionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECollectionsServices.Models">
  <ResponseCode>sample string 1</ResponseCode>
  <ResponseMessage>sample string 3</ResponseMessage>
  <ResponseStatus>sample string 2</ResponseStatus>
</MemberContributionResponse>