POST associations({associationId})/members({memberId})/notes({noteId})
this method takes in some data and creates a new note and returns the new note
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| associationId | association identifier |
Define this parameter in the request URI. |
| memberId | member identifier |
Define this parameter in the request URI. |
| postData | data posted to the API |
Define this parameter in the request body. |
| noteId | No documentation available. |
Define this parameter in the request URI. |
Request body formats
application/json, text/json
Sample:
{
"Subject": "sample string 1",
"Text": "sample string 2",
"FollowUpDate": "2025-10-30T12:32:41.0223699-05:00",
"RecipientCount": 1,
"ChamberRepId": 1,
"CategoryId": 1,
"MemberRepId": 1,
"RecipientOfTheMessage": "sample string 3"
}
application/xml, text/xml
Sample:
<NotePP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.Common.API.Transfer.Members"> <CategoryId>1</CategoryId> <ChamberRepId>1</ChamberRepId> <FollowUpDate>2025-10-30T12:32:41.0223699-05:00</FollowUpDate> <MemberRepId>1</MemberRepId> <RecipientCount>1</RecipientCount> <RecipientOfTheMessage>sample string 3</RecipientOfTheMessage> <Subject>sample string 1</Subject> <Text>sample string 2</Text> </NotePP>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
new note
Response body formats
application/json, text/json
Sample:
{
"Subject": "sample string 1",
"Date": "2025-10-30T12:32:41.0223699-05:00",
"Task": "sample string 2",
"Text": "sample string 3",
"ID": 1,
"IsBulk": true,
"MemberId": 1,
"RepresentativeId": 1
}
application/xml, text/xml
Sample:
<NoteTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.Common.API.Transfer.Members"> <Date>2025-10-30T12:32:41.0223699-05:00</Date> <ID>1</ID> <IsBulk>true</IsBulk> <MemberId>1</MemberId> <RepresentativeId>1</RepresentativeId> <Subject>sample string 1</Subject> <Task>sample string 2</Task> <Text>sample string 3</Text> </NoteTO>