Error: Numeric instance is lower than the required minimum (minimum: 1, found: 0)

Code:

“requestedQuantity”: {{#if this. Item_Qty}}{{{this.Item_Qty}}}{{else}}0{{/if}}

Using the above code , Celigo tried to assign 0 to the ‘requestedQuantity’ in the Client system. But, ‘requestedQuantity’ field set as minimum required ‘1’ quantity. So, it shows an error.

Error:

{

  “errorCode”: “311”,

  “errorDescription”: [

    “[Path ‘/lines/5/requestedQuantity’] Numeric instance is lower than the required minimum (minimum: 1, found: 0)”,

    ]

}

Solution:

“requestedQuantity”: {{#if this. Item_Qty}}{{{this. Item_Qty}}}{{else}}1{{/if}}

Leave a comment

Your email address will not be published. Required fields are marked *