Skip to content

Note_Update#


Description#

This function allows you to update a note.

Request Body Parameters#

Parameter
Type Description
Note_ID Number Note Id to Update
NoteText String Text to update on the note

Response Parameters#

Parameter
Type Description
success boolean Boolean value indicating if the request was successful

Example Request#

{
    "Store_code": "beta",
    "Function": "Note_Update",
    "Note_ID": 10,
    "NoteText": "Hello World"
}

Example Response#

{
    "success": 1
}

Error Responses#

Error Code Error Message Error Description
MER-JSN-NTE-00009 Note not found Note Id sent in the request does not exist.