POST api/v1/RecipeSave

Request Information

URI Parameters

None.

Body Parameters

RecipeSaveInput
NameDescriptionTypeAdditional information
CompID

integer

None.

LocID

integer

None.

RecipeID

integer

None.

ItemID

integer

None.

TaxonomyID

integer

None.

Mode

string

None.

UOMID

integer

None.

json

string

None.

UserID

integer

None.

NoOfPlates

integer

None.

ProcessedAt

string

None.

RecipeDetails

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CompID": 1,
  "LocID": 2,
  "RecipeID": 3,
  "ItemID": 4,
  "TaxonomyID": 5,
  "Mode": "sample string 6",
  "UOMID": 7,
  "json": "sample string 8",
  "UserID": 9,
  "NoOfPlates": 10,
  "ProcessedAt": "sample string 11",
  "RecipeDetails": "sample string 12"
}

application/xml, text/xml

Sample:
<RecipeSaveInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <CompID>1</CompID>
  <ItemID>4</ItemID>
  <LocID>2</LocID>
  <Mode>sample string 6</Mode>
  <NoOfPlates>10</NoOfPlates>
  <ProcessedAt>sample string 11</ProcessedAt>
  <RecipeDetails>sample string 12</RecipeDetails>
  <RecipeID>3</RecipeID>
  <TaxonomyID>5</TaxonomyID>
  <UOMID>7</UOMID>
  <UserID>9</UserID>
  <json>sample string 8</json>
</RecipeSaveInput>

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

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.