POST api/Note/UpdateNote/{auth}/{NoteGUID}

Used to update a note attached to an entity

Request Information

URI Parameters

NameDescriptionTypeAdditional information
auth

The authorization GUID for this user session

string

Required

NoteGUID

The note identifier to update

string

Required

Body Parameters

(See example below for values)

UpdateNoteParm
NameDescriptionTypeAdditional information
VisibleToCustomers

boolean

None.

IsBillingNote

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "VisibleToCustomers": true,
  "IsBillingNote": true
}

application/xml, text/xml

Sample:
<UpdateNoteParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mnx.WebApi.Transportation.Models">
  <IsBillingNote>true</IsBillingNote>
  <VisibleToCustomers>true</VisibleToCustomers>
</UpdateNoteParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

(void)

None.