POST api/ticket/createnote

Create a note for a ticket

Request Information

URI Parameters

None.

Body Parameters

The new notetext with ticketid

NewNoteModel
NameDescriptionTypeAdditional information
NoteText

string

Required

TicketId

string

Required

Request Formats

application/json, text/json

Sample:
{
  "NoteText": "sample string 1",
  "TicketId": "sample string 2"
}

application/xml, text/xml

Sample:
<NewNoteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/InSumma_Servicebus.Models.Ticketing">
  <NoteText>sample string 1</NoteText>
  <TicketId>sample string 2</TicketId>
</NewNoteModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The notes the annotationmodel

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.