POST api/v1/note/save-client-notes
Request Information
URI Parameters
None.
Body Parameters
ClientNotesModelName | Description | Type | Additional information |
---|---|---|---|
CNId | integer |
None. |
|
Flags | integer |
None. |
|
Year | integer |
None. |
|
Subject | string |
None. |
|
Body | string |
None. |
|
CategoryId | integer |
None. |
|
ClientIds | Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "CNId": 1, "Flags": 2, "Year": 1, "Subject": "sample string 3", "Body": "sample string 4", "CategoryId": 1, "ClientIds": [ 1, 2 ] }
application/xml, text/xml
Sample:
<ClientNotesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iPMS.Models.ClientNote"> <Body>sample string 4</Body> <CNId>1</CNId> <CategoryId>1</CategoryId> <ClientIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </ClientIds> <Flags>2</Flags> <Subject>sample string 3</Subject> <Year>1</Year> </ClientNotesModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.