POST api/account/save-adult-membership
Request Information
URI Parameters
None.
Body Parameters
SaveAdultMembershipRequestModelName | Description | Type | Additional information |
---|---|---|---|
ChildId | string |
None. |
|
AdultId | string |
None. |
|
Type | string |
None. |
|
StartDate | string |
None. |
|
EndDate | string |
None. |
|
MembershipType | string |
None. |
|
Amount | string |
None. |
|
OverrideType | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ChildId": "sample string 1", "AdultId": "sample string 2", "Type": "sample string 3", "StartDate": "sample string 4", "EndDate": "sample string 5", "MembershipType": "sample string 6", "Amount": "sample string 7", "OverrideType": "sample string 8" }
application/xml, text/xml
Sample:
<SaveAdultMembershipRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel"> <AdultId>sample string 2</AdultId> <Amount>sample string 7</Amount> <ChildId>sample string 1</ChildId> <EndDate>sample string 5</EndDate> <MembershipType>sample string 6</MembershipType> <OverrideType>sample string 8</OverrideType> <StartDate>sample string 4</StartDate> <Type>sample string 3</Type> </SaveAdultMembershipRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>