POST api/Collections/Register

Request Information

URI Parameters

None.

Body Parameters

RegistrationRequest
NameDescriptionTypeAdditional information
Firstname

string

None.

Lastname

string

None.

PhoneNumber

string

None.

Network

string

None.

Congregation

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Firstname": "sample string 1",
  "Lastname": "sample string 2",
  "PhoneNumber": "sample string 3",
  "Network": "sample string 4",
  "Congregation": "sample string 5"
}

application/xml, text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RegistrationResponse
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:
<RegistrationResponse 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>
</RegistrationResponse>