Skip to main content

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.

ParameterTypeRequiredDescription
localizedResourceNamestringThe 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.

ParameterTypeRequiredDescription
projectIdGUIDThe ID of the project to filter localized resources by. Optional.
pageNumberintThe page number for pagination. If not provided, defaults to the first page. Optional.
pagingCookiestringThe 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.

ParameterTypeRequiredDescription
localizedResourceIdGUIDThe 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.

ParameterTypeRequiredDescription
localizedResourceNamestringThe name of the localized resource.
projectIdGUIDThe ID of the project for the localized resource.
valuestringThe value for the localized resource.
titlestringThe title for the localized resource. Optional.
descriptionstringThe 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.

ParameterTypeRequiredDescription
localizedResourceNamestringThe name of the localized resource to create.
projectIdGUIDThe ID of the project to create the localized resource in.
valuestringThe value for the localized resource.
titlestringThe title for the localized resource. Optional.
descriptionstringThe 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.

ParameterTypeRequiredDescription
localizedResourceIdGUIDThe ID of the localized resource to update.
valuestringThe 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.