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.
| Parameter | Type | Required | Description |
|---|---|---|---|
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.
list_localized_resources_by_project_name
Lists Flowon localized resources by project name.
| Parameter | Type | Required | Description |
|---|---|---|---|
projectName | string | ✓ | The 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.
| Parameter | Type | Required | Description |
|---|---|---|---|
projectId | GUID | ✓ | The 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.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceName | string | ✓ | The name of the localized resource. |
projectName | string | ✓ | The 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.
| 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 preview url for Flowon localized resource.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceName | string | ✓ | The name of the localized resource. |
projectName | string | ✓ | The name 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. |
projectName | string | ✓ | The name 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 Flowon localized resource metadata.
| Parameter | Type | Required | Description |
|---|---|---|---|
localizedResourceName | string | ✓ | The name of the localized resource to update. |
projectName | string | ✓ | The name of the project the localized resource belongs to. |
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.