[[["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\u003eAPPEND_ALL\u003c/code\u003e function appends multiple values to an existing array, and it is specified with \u003ccode\u003eAPPEND_ALL(value1, value2, ...)\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThis function supports appending values to arrays of boolean, double, integer, and string data types, requiring that the added values match the array's existing type.\u003c/p\u003e\n"],["\u003cp\u003eThe function's input includes the values you wish to append, and its output is the array with all the values added.\u003c/p\u003e\n"],["\u003cp\u003eThe provided examples show how to append values to arrays of integers, booleans, and strings.\u003c/p\u003e\n"]]],[],null,["# APPEND_ALL function\n\nSee the [supported connectors](/integration-connectors/docs/connector-reference-overview) for Application Integration.\n\nAPPEND_ALL function\n===================\n\n`APPEND_ALL` function\n---------------------\n\nSupported data types\n--------------------\n\n\nThe `APPEND_ALL` function supports the following data types:\n\n- Boolean array\n- Double array\n- Integer array\n- String array\n\nExample 1: Append values to an integer array\n--------------------------------------------\n\n\n**Sample data** : `$var1$ = {3,6,8,1}`\n\n\n**Usage** : `$var1$.APPEND_ALL(7,9,15)`\nAppend values 7, 9, and 15 to var1.\n\n\n**Output** : `{3,6,8,1,7,9,15}`\n\nExample 2: Append values to a Boolean array\n-------------------------------------------\n\n\n**Sample data** : `$var1$ = {True,False,True}`\n\n\n**Usage** : `$var1$.APPEND_ALL(False,True) `\nAppend the values `False` and `True` to var1.\n\n\n**Output** : `{True,False,True,False,True}`\n\nExample 3: Append values to a String array\n------------------------------------------\n\n\n**Sample data** : `$var1$ = {\"Hello\",\"Apigee\"}`\n\n\n**Usage** : `$var1$.APPEND_ALL(\"Integrations\",\"Test\") `\nAppend the words `Integrations` and `Test` to var1.\n\n\n**Output** : `{\"Hello\",\"Apigee\",\"Integrations\",\"Test\"}`\n\nRecommendation\n--------------\n\n- Learn how to add and configure a [Data Mapping task](/application-integration/docs/configure-data-mapping-task)"]]