[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eMIN\u003c/code\u003e function identifies the lowest value within an array.\u003c/p\u003e\n"],["\u003cp\u003eThis function is applicable to both double and integer arrays.\u003c/p\u003e\n"],["\u003cp\u003eThe function is used as \u003ccode\u003eMIN()\u003c/code\u003e and returns the lowest value found.\u003c/p\u003e\n"],["\u003cp\u003eExample usage includes finding the lowest value in an array like \u003ccode\u003e{5,8,2,1}\u003c/code\u003e or \u003ccode\u003e{2.5,6.1,4.9}\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# MIN function\n\nSee the [supported connectors](/integration-connectors/docs/connector-reference-overview) for Application Integration.\n\nMIN function\n============\n\n`MIN` function\n--------------\n\nSupported data type\n-------------------\n\n\nThe `MIN` function supports the following data types:\n\n- Double array\n- Integer array\n\nExample 1: Find the lowest value in an integer array\n----------------------------------------------------\n\n\n**Sample data** : `$var1$ = {5,8,2,1}`\n\n\n**Usage** : `$var1$.MIN()`\nReturn the lowest value in var1.\n\n\n**Output** : `1`\n\nExample 2: Find the lowest value in a double array\n--------------------------------------------------\n\n\n**Sample data** : `$var1$ = {2.5,6.1,4.9}`\n\n\n**Usage** : `$var1$.MIN()`\nReturn the lowest value in var1.\n\n\n**Output** : `2.5`\n\nRecommendation\n--------------\n\n- Learn how to add and configure a [Data Mapping task](/application-integration/docs/configure-data-mapping-task)"]]