POST api/todo/addtodonote?toDoId={toDoId}

Add note for a ToDo Processes this default to do API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
toDoId

The unique identifier of the to do resource.

integer

Required

Body Parameters

The add note to event command data contract supplied with the request.

AddNoteToEventCommandDataContract
NameDescriptionTypeAdditional information
Note

The note value.

string

None.

NegotiatorId

The unique identifier of the related negotiator resource.

integer

None.

CreationDate

The creation date, expressed as a date and time.

date

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Note": "sample string 1",
  "NegotiatorId": 1,
  "CreationDate": "2026-08-05T00:22:50.9110826Z"
}

Response Information

Resource Description

The response returned after the operation completes.

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

The version value.

Version

None.

Content

The content value.

HttpContent

None.

StatusCode

The status code classification.

HttpStatusCode

None.

ReasonPhrase

The reason phrase value.

string

None.

Headers

The collection of headers.

Collection of Object

None.

RequestMessage

The request message value.

HttpRequestMessage

None.

IsSuccessStatusCode

Indicates whether this item is success status code.

boolean

None.