Skip to main content

Localized Resource Tools

Overview

Localized Resource tools provide full lifecycle management for Flowon Localized Resource records. Localized Resources are named string values that allow Logic Blocks and Logic Flows to reference translatable text by name rather than embedding literal strings in logic definitions. They are project-scoped and support title and description metadata.


list_all_localized_resources

Lists All Flowon localized resources.

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


list_localized_resources_by_project_name

Lists Flowon localized resources by project name.

ParameterTypeRequiredDescription
projectNamestringThe name of the project to filter localized resources by name.

Returns: A list of Localized Resources within the specified project.


list_localized_resources_by_project_id

Lists Flowon localized resources by project ID.

ParameterTypeRequiredDescription
projectIdGUIDThe ID of the project to filter localized resources by.

Returns: A list of Localized Resources within the specified project.


get_localized_resource_details_by_name

Gets the details for a Flowon Localized Resource by name.

ParameterTypeRequiredDescription
localizedResourceNamestringThe name of the localized resource.
projectNamestringThe name of the project the localized resource belongs to.

Returns: Full Localized Resource details including name, value, title, description, and project.


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 preview url for Flowon localized resource.

ParameterTypeRequiredDescription
localizedResourceNamestringThe name of the localized resource.
projectNamestringThe name 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.
projectNamestringThe name 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 Flowon localized resource metadata.

ParameterTypeRequiredDescription
localizedResourceNamestringThe name of the localized resource to update.
projectNamestringThe name of the project the localized resource belongs to.
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.