POST api/Recipe/AddNote

Request Information

URI Parameters

None.

Body Parameters

RecipeNotesDto
NameDescriptionTypeAdditional information
UserId

string

None.

Note

string

None.

CreateDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "userId": "sample string 1",
  "note": "sample string 2",
  "createDate": "2025-05-24T14:28:45.9290807+03:00"
}

application/xml, text/xml

Sample:
<RecipeNotesDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs.Recipe">
  <CreateDate>2025-05-24T14:28:45.9290807+03:00</CreateDate>
  <Note>sample string 2</Note>
  <UserId>sample string 1</UserId>
</RecipeNotesDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"userId":"sample string 1","note":"sample string 2","createDate":"2025-05-24T14:28:45.9290807+03:00"}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.