GET api/Service/SaveCustNotes?note={note}&serviceNum={serviceNum}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
note

string

Required

serviceNum

integer

Required

Body Parameters

None.

Response Information

Resource Description

ServiceNote
NameDescriptionTypeAdditional information
note_code

integer

None.

note_text

string

String length: inclusive between 0 and 300

create_date

date

None.

sevice_record

integer

None.

creater_emp_code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "note_code": 1,
  "note_text": "sample string 2",
  "create_date": "2024-05-02T23:02:58.538915+03:00",
  "sevice_record": 3,
  "creater_emp_code": 4
}

application/xml, text/xml

Sample:
<ServiceNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustDemog">
  <create_date>2024-05-02T23:02:58.538915+03:00</create_date>
  <creater_emp_code>4</creater_emp_code>
  <note_code>1</note_code>
  <note_text>sample string 2</note_text>
  <sevice_record>3</sevice_record>
</ServiceNote>

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.