POST Client/InsertClientNote

Adds a note for a client

Request Information

URI Parameters

None.

Body Parameters

NoteRequest
NameDescriptionTypeAdditional information
ClientID

integer

None.

Note

string

None.

userID

Gets or sets the user identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientID": 1,
  "Note": "sample string 2",
  "userID": 3
}

application/xml, text/xml

Sample:
<NoteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
  <userID>3</userID>
  <ClientID>1</ClientID>
  <Note>sample string 2</Note>
</NoteRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IApiResponse
NameDescriptionTypeAdditional information
ResponseType

integer

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.