PUT api/AccountNoteReplies/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

AccountNoteReply
NameDescriptionTypeAdditional information
NoteReplyId

integer

None.

NoteId

integer

None.

Reply

string

None.

DateCreated

date

None.

DateUpdated

date

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

CreatedByName

string

None.

CustomerName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "NoteReplyId": 1,
  "NoteId": 2,
  "Reply": "sample string 3",
  "DateCreated": "2024-03-27T18:37:19.7304192+00:00",
  "DateUpdated": "2024-03-27T18:37:19.7304192+00:00",
  "CreatedBy": 1,
  "UpdatedBy": 1,
  "CreatedByName": "sample string 4",
  "CustomerName": "sample string 5"
}

application/xml, text/xml

Sample:
<AccountNoteReply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APL.Models">
  <CreatedBy>1</CreatedBy>
  <CreatedByName>sample string 4</CreatedByName>
  <CustomerName>sample string 5</CustomerName>
  <DateCreated>2024-03-27T18:37:19.7304192+00:00</DateCreated>
  <DateUpdated>2024-03-27T18:37:19.7304192+00:00</DateUpdated>
  <NoteId>2</NoteId>
  <NoteReplyId>1</NoteReplyId>
  <Reply>sample string 3</Reply>
  <UpdatedBy>1</UpdatedBy>
</AccountNoteReply>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AccountNoteReply'.

Response Information

Resource Description

None.