Localized Resource Tools
Overview
Localized Resources store localizable strings that logic and validation messages reference. Flowon Logic Assist supports searching, listing, reading, creating, and updating Localized Resource records. Requires Logic Composer.
search_localized_resources
Searches Flowon localized resources by name.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceName | string | ✓ | The name of the localized resource to search for. |
Returns: Matching Localized Resources including name, title, description, and project.
list_localized_resources
Lists Flowon localized resources.
| Parameter | Type | Required | Description |
|---|---|---|---|
projectId | GUID | The ID of the project to filter localized resources by. Optional. | |
pageNumber | int | The page number for pagination. If not provided, defaults to the first page. Optional. | |
pagingCookie | string | The paging cookie for pagination. This should be provided if pageNumber is provided and there are more records to retrieve. Optional. |
Returns: A paginated list of Localized Resources including name, title, description, and project.
See Pagination for details on iterating through large result sets.
get_localized_resources_details_by_id
Gets the details for a Flowon localized resource by ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceId | GUID | ✓ | The ID of the localized resource. |
Returns: Full Localized Resource details including name, value, title, description, and project.
get_localized_resource_preview_url
Get a preview URL for a Flowon localized resource.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceName | string | ✓ | The name of the localized resource. |
projectId | GUID | ✓ | The ID of the project for the localized resource. |
value | string | ✓ | The value for the localized resource. |
title | string | The title for the localized resource. Optional. | |
description | string | The description for the localized resource. Optional. |
Returns: A preview URL for the localized resource record.
create_localized_resource
Creates a new Flowon localized resource and returns the resource id.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceName | string | ✓ | The name of the localized resource to create. |
projectId | GUID | ✓ | The ID of the project to create the localized resource in. |
value | string | ✓ | The value for the localized resource. |
title | string | The title for the localized resource. Optional. | |
description | string | The description for the localized resource. Optional. |
Returns: The GUID of the newly created Localized Resource and its URL.
Restriction: Cannot be called on projects associated with a managed solution. See Managed Solution Protection.
update_localized_resource_value
Updates a Flowon localized resource value.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceId | GUID | ✓ | The ID of the localized resource to update. |
value | string | ✓ | The new value for the localized resource. |
Returns: Confirmation that the localized resource value was updated.
Restriction: Cannot be called on projects associated with a managed solution. See Managed Solution Protection.
Best practice: Always call get_localized_resources_details_by_id first to read the current value before updating.