POST api/progression/editprogressionnote/{noteId}

Edits a note from the sales progression role without deleting the original one.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
noteId

Id of the edited note.

integer

Required

Body Parameters

Details of the new version of the progression note.

Dezrez.Core.DataContracts.External.Api.Events.Progression.Command.AddProgressionNoteCommandDataContract
NameDescriptionTypeAdditional information
RoleId

integer

None.

DateTime

date

None.

NegotiatorIds

Collection of integer

None.

Title

string

None.

Note

string

None.

Pinned

boolean

None.

Request Formats

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 'AddProgressionNoteCommandDataContract'.

application/json, text/json

Sample:
{
  "RoleId": 1,
  "DateTime": "2024-04-19T11:30:50.4847094Z",
  "NegotiatorIds": [
    1,
    2
  ],
  "Title": "sample string 2",
  "Note": "sample string 3",
  "Pinned": true
}

Response Information

Resource Description

System.Net.Http.HttpResponseMessage
NameDescriptionTypeAdditional information
Version

System.Version

None.

Content

System.Net.Http.HttpContent

None.

StatusCode

System.Net.HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

System.Net.Http.HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.