Fetch component text by component folder
Component Folders
Fetch component text by component folder
Returns the components in the specified folder. Format is identical to the format used by the Fetch components endpoint.
GET
Fetch component text by component folder
Documentation Index
Fetch the complete documentation index at: https://developer.dittowords.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Path Parameters
Query Parameters
The API ID of the variant. If specified, will filter for components that have the variant, and will return the attributes (e.g. text, status) of that component's variant.
Example:
"french"
Available options:
flat, structured, nested, icu, android, ios-strings, ios-stringsdict Example:
"structured"
Available options:
NONE, WIP, REVIEW, FINAL Example:
"FINAL"
Response
200 - application/json
Returns a component folder's components
Example:
{
"example_component_1": {
"name": "Component Name",
"text": "This is some component text",
"status": "WIP",
"folder": "folder_1"
},
"example_component_2": {
"name": "Another Component Name",
"text": "This is some more component text",
"status": "FINAL",
"folder": "folder_1"
}
}