POST api/SharedServices/PayNonMemberContributionByCash
Request Information
URI Parameters
None.
Body Parameters
PayNonMemberContributionByCashRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| InputerUsername | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| BeneficiarySocietyCode | string |
None. |
|
| Amount | decimal number |
None. |
|
| PhoneNumber | string |
None. |
|
| ContributionSource | integer |
None. |
|
| ContributorStatus | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"InputerUsername": "sample string 1",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"BeneficiarySocietyCode": "sample string 4",
"Amount": 5.0,
"PhoneNumber": "sample string 6",
"ContributionSource": 7,
"ContributorStatus": 8
}
application/xml, text/xml
Sample:
<PayNonMemberContributionByCashRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UtilServices.Models"> <Amount>5</Amount> <BeneficiarySocietyCode>sample string 4</BeneficiarySocietyCode> <ContributionSource>7</ContributionSource> <ContributorStatus>8</ContributorStatus> <FirstName>sample string 2</FirstName> <InputerUsername>sample string 1</InputerUsername> <LastName>sample string 3</LastName> <PhoneNumber>sample string 6</PhoneNumber> </PayNonMemberContributionByCashRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GenericResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | string |
None. |
|
| ResponseStatus | string |
None. |
|
| ResponseMessage | string |
None. |
|
| CollectionPaymentNo | integer |
None. |
|
| CollectionReference | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": "sample string 1",
"ResponseStatus": "sample string 2",
"ResponseMessage": "sample string 3",
"CollectionPaymentNo": 4,
"CollectionReference": "sample string 5"
}
application/xml, text/xml
Sample:
<GenericResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UtilServices.Models"> <CollectionPaymentNo>4</CollectionPaymentNo> <CollectionReference>sample string 5</CollectionReference> <ResponseCode>sample string 1</ResponseCode> <ResponseMessage>sample string 3</ResponseMessage> <ResponseStatus>sample string 2</ResponseStatus> </GenericResponse>