PUT associations({associationId})/members/applications({applicationId})
Method to update a member application
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
associationId | Association of interest |
Define this parameter in the request URI. |
applicationId | Application to update |
Define this parameter in the request URI. |
memberApplication | New information |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "Id": 1, "MemberId": 1, "Status": 1, "MemberAppPackageId": 1, "MemberAppPackageName": "sample string 2", "AssociationNotes": "sample string 3", "MemberComments": "sample string 4", "MemberAppBillStatus": "sample string 5" }
application/xml, text/xml
Sample:
<MemberApplicationResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources"> <AssociationNotes>sample string 3</AssociationNotes> <Id>1</Id> <MemberAppBillStatus>sample string 5</MemberAppBillStatus> <MemberAppPackageId>1</MemberAppPackageId> <MemberAppPackageName>sample string 2</MemberAppPackageName> <MemberComments>sample string 4</MemberComments> <MemberId>1</MemberId> <Status>1</Status> </MemberApplicationResource>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Updated member application
Response body formats
application/json, text/json
Sample:
{ "Id": 1, "MemberId": 1, "Status": 1, "MemberAppPackageId": 1, "MemberAppPackageName": "sample string 2", "AssociationNotes": "sample string 3", "MemberComments": "sample string 4", "MemberAppBillStatus": "sample string 5" }
application/xml, text/xml
Sample:
<MemberApplicationResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources"> <AssociationNotes>sample string 3</AssociationNotes> <Id>1</Id> <MemberAppBillStatus>sample string 5</MemberAppBillStatus> <MemberAppPackageId>1</MemberAppPackageId> <MemberAppPackageName>sample string 2</MemberAppPackageName> <MemberComments>sample string 4</MemberComments> <MemberId>1</MemberId> <Status>1</Status> </MemberApplicationResource>