POST Customers/CustomerNotes_Insert

Request Information

URI Parameters

None.

Body Parameters

CustomerNotes
NameDescriptionTypeAdditional information
Id

integer

None.

Note

string

None.

CustomerId

integer

None.

CreatedBy

integer

None.

CreatedAt

date

None.

FromWhere

integer

None.

Type

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Note": "sample string 2",
  "CustomerId": 3,
  "CreatedBy": 4,
  "CreatedAt": "2025-10-29T05:45:24.1928939+03:00",
  "FromWhere": 1,
  "Type": 1
}

application/xml, text/xml

Sample:
<CustomerNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POCO">
  <CreatedAt>2025-10-29T05:45:24.1928939+03:00</CreatedAt>
  <CreatedBy>4</CreatedBy>
  <CustomerId>3</CustomerId>
  <FromWhere>1</FromWhere>
  <Id>1</Id>
  <Note>sample string 2</Note>
  <Type>1</Type>
</CustomerNotes>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
ErrorCode

integer

None.

ErrorMessage

string

None.

IsScusses

boolean

None.

ResponseDetails

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "ErrorCode": 1,
  "ErrorMessage": "sample string 2",
  "IsScusses": true,
  "ResponseDetails": {}
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Accounting.API.Models">
  <ErrorCode>1</ErrorCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <IsScusses>true</IsScusses>
  <ResponseDetails />
</Response>