Summary
Concatenates arrays together.
Description
Used to merge two arrays
Route
No Northbound API Available
Roles
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
arr |
array |
yes |
The first array to concatenate |
arrayN |
array |
yes |
Array to concatenate into a new array |
Copied to Clipboard
{
"arr": [
"a",
"b"
],
"arrayN": [
"c",
"d"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"arr": {
"title": "arr",
"type": "array",
"items": [
{
"type": [
"string",
"number",
"integer",
"object",
"array",
"boolean",
"null"
]
}
],
"examples": [
[
"a",
"b"
]
]
},
"arrayN": {
"title": "arrayN",
"type": "array",
"items": [
{
"type": [
"string",
"number",
"integer",
"object",
"array",
"boolean",
"null"
]
}
],
"examples": [
[
"c",
"d"
]
]
}
},
"required": [
"arr",
"arrayN"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
combinedArray |
array |
The concatenation of the args |
Copied to Clipboard
[
"a",
"b",
"c",
"d"
]
Copied to Clipboard
{
"title": "combinedArray",
"type": "array",
"items": [
{
"type": [
"string",
"number",
"integer",
"object",
"array",
"boolean"
]
}
],
"examples": [
[
"a",
"b",
"c",
"d"
]
]
}