Add Note
Adds Notes to a booking in ProCharter.
Request Profile Table
Element | @Attribute |
Description/Contents |
AddNote / AddNoteRequest |
Root element of message. |
BookingID |
ProCharter Booking ID of the booking to add Notes to |
Notes |
Collection of Note objects |
Note |
Object representing a Note |
@DueDate |
Due Date for the Note. If there is no Due Date specify as "0001-01-01". |
@Complete |
Indicates if the Note requires following up or is Complete |
Value |
The actual text of the Note |
Example message:
<AddNote>
<AddNoteRequest>
<BookingID>78857</BookingID>
<Notes>
<Note DueDate="2016-01-21" Complete="false">
<Value>new note 3</Value>
</Note>
</Notes>
</AddNoteRequest>
</AddNote>
Response Profile Table
Element | @Attribute |
Description/Contents |
AddNoteResponse / AddNoteResult |
Root element of message. |
Success |
Indicates if the Note was added successfully |
Example message:
<AddNoteResponse xmlns="ResLink">
<AddNoteResult>
<TimeStamp>2016-01-12T10:54:53.4104608+10:00</TimeStamp>
<Status Code="0" Message=""/>
<Errors/>
<Warnings/>
<Success>true</Success>
</AddNoteResult>
</AddNoteResponse>