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
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-strings-dict
Example:
"structured"
Available options:
NONE
, WIP
, REVIEW
, FINAL
Example:
"FINAL"
Response
200 - application/json
Returns a component folder's components
The response is of type string
.
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"
}
}