From f07a6ad2320a3712016d4c31512a07b276a173e9 Mon Sep 17 00:00:00 2001 From: Joost Verhoog Date: Thu, 4 Dec 2025 17:29:06 +0100 Subject: [PATCH 1/2] List of primitives in external actions with open type parameters --- .../call-external-action.md | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md index 702278bea92..70c83284aee 100644 --- a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md +++ b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md @@ -81,6 +81,37 @@ If you have selected a variable for an entity that is an open type (`OpenType="t The ability to add additional attributes was introduced in [Studio Pro 11.5.0](/releasenotes/studio-pro/11.5/). {{% /alert %}} +#### Add/Edit Additional Attribute + +An additional attribute can have one of the following types: + +* Boolean +* Date and time +* Decimal +* Enumeration +* Integer/Long +* String +* List of Boolean +* List of Date and time +* List of Decimal +* List of Enumeration +* List of Integer/Long +* List of String + +For types **Enumeration** and **List of Enumeration**, Studio Pro lets you choose the enumeration. This must be an external enumeration of the action's service. + +For types that are not a list you type an expression of the given type. + +For list types, you: + +1. Choose an entity, +2. Type an expression that is a list of that entity, and +3. Choose an attribute of that entity with the given type. + +{{% alert color="info" %}} +List-types were introduced in [Studio Pro 11.6.0](/releasenotes/studio-pro/11.6/). +{{% /alert %}} + ### Associations to Include If you have selected a variable for an entity that has associations, you can select the associations you want to include in the arguments that you call the external action with. From ab71ccfc4e94f9da890a7bb4c400e03c597ce9f4 Mon Sep 17 00:00:00 2001 From: Quinn Tracy <142489060+quinntracy@users.noreply.github.com> Date: Fri, 5 Dec 2025 11:00:41 +0100 Subject: [PATCH 2/2] Small edit --- .../integration-activities/call-external-action.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md index 70c83284aee..5ec2478a80f 100644 --- a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md +++ b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-external-action.md @@ -100,12 +100,12 @@ An additional attribute can have one of the following types: For types **Enumeration** and **List of Enumeration**, Studio Pro lets you choose the enumeration. This must be an external enumeration of the action's service. -For types that are not a list you type an expression of the given type. +For types that are not a list, you type an expression of the given type. For list types, you: -1. Choose an entity, -2. Type an expression that is a list of that entity, and +1. Choose an entity. +2. Type an expression that is a list of that entity. 3. Choose an attribute of that entity with the given type. {{% alert color="info" %}}