RecipeManager


Click here for a complete list of operations.

FindRecipe

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /KMWare.ZMA.Food.RecipeMgmt.Host/RecipeManager.asmx HTTP/1.1
Host: ssa.fp360.us
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://KMWare.ZMA.Food.RecipeMgmt.ServiceContracts/FindRecipe"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FindRecipe xmlns="http://KMWare.ZMA.Food.RecipeMgmt.ServiceContracts">
      <FindRecipeRequest xmlns="http://KMWare.ZMA.Food.RecipeMgmt.DataTypes">
        <ISOLangId>string</ISOLangId>
        <OrderByField>string</OrderByField>
        <OrderType>string</OrderType>
        <PageNo>int</PageNo>
        <PageSize>int</PageSize>
        <FieldCriteria>
          <RecipeName>string</RecipeName>
          <Description>string</Description>
          <OrganizationUnitId>short</OrganizationUnitId>
          <IngrediantName>string</IngrediantName>
          <ExpiryDate>dateTime</ExpiryDate>
          <ReadyIn>decimal</ReadyIn>
          <SubCategoryCode>string</SubCategoryCode>
          <CategoryCode>string</CategoryCode>
        </FieldCriteria>
      </FindRecipeRequest>
    </FindRecipe>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FindRecipeResponse xmlns="http://KMWare.ZMA.Food.RecipeMgmt.ServiceContracts">
      <FindRecipeResult xmlns="http://KMWare.ZMA.Food.RecipeMgmt.DataTypes">
        <SearchList>
          <Recipe>
            <OrganizationUnitId>short</OrganizationUnitId>
            <RecipeName>string</RecipeName>
            <SubCategoryCode>string</SubCategoryCode>
            <CategoryCode>string</CategoryCode>
            <CookingTime>decimal</CookingTime>
            <PreparationTime>decimal</PreparationTime>
            <ReadyIn>decimal</ReadyIn>
            <Description>string</Description>
            <CustomField1>string</CustomField1>
            <UpdateId>string</UpdateId>
            <UpdateDate>dateTime</UpdateDate>
            <ExpiryDate>dateTime</ExpiryDate>
            <RecipeAttachments xsi:nil="true" />
            <RecipeCostingMargin xsi:nil="true" />
            <RecipeIngrediant xsi:nil="true" />
            <RecipeNutritionalContent xsi:nil="true" />
            <RecipeProduction xsi:nil="true" />
            <RecipeServingInstruction xsi:nil="true" />
            <IngrediantName>string</IngrediantName>
          </Recipe>
          <Recipe>
            <OrganizationUnitId>short</OrganizationUnitId>
            <RecipeName>string</RecipeName>
            <SubCategoryCode>string</SubCategoryCode>
            <CategoryCode>string</CategoryCode>
            <CookingTime>decimal</CookingTime>
            <PreparationTime>decimal</PreparationTime>
            <ReadyIn>decimal</ReadyIn>
            <Description>string</Description>
            <CustomField1>string</CustomField1>
            <UpdateId>string</UpdateId>
            <UpdateDate>dateTime</UpdateDate>
            <ExpiryDate>dateTime</ExpiryDate>
            <RecipeAttachments xsi:nil="true" />
            <RecipeCostingMargin xsi:nil="true" />
            <RecipeIngrediant xsi:nil="true" />
            <RecipeNutritionalContent xsi:nil="true" />
            <RecipeProduction xsi:nil="true" />
            <RecipeServingInstruction xsi:nil="true" />
            <IngrediantName>string</IngrediantName>
          </Recipe>
        </SearchList>
        <SearchCount>int</SearchCount>
        <PageCount>int</PageCount>
      </FindRecipeResult>
    </FindRecipeResponse>
  </soap:Body>
</soap:Envelope>