apps/wbflex/documents/{id}/components

This method retrieves a list of components from a Flex document. It includes the number of segments in each component.

Use cases:

  • List all components with total segments each.

  • List all components that contain translations in error status.

  • List all components containing bookmarked translations.

URL

(POST) /api/apps/wbflex/documents/{id}/components

PARAMETERS

URL Parameters

The URL parameters are:

id

Specify either a document ID (such as 1000) or a job ID (such as c300).

string, Mandatory

Body

The body must contain a JSON object with optional filters.

All filter options are optional. If you do not specify a filter you will receive every single component appearing in the document.

If you specify filters then you will receive the components of the filtered segments.

locales

Optional list of locales. If not specified, the system uses all Flex document target languages.

This property is only used to delimit all other filters below to specific languages. Using more than one language means that a filter must apply in at least one of those languages in a segment for the segment to be retained. It does NOT mean that the filters below must apply to ALL languages!

Example to restrict to 2 languages:

"status": [ "fr", "de" ]

 

status

Optional list of numeric translation statuses. See https://wordbee.atlassian.net/wiki/spaces/API2/pages/1793949697

Example to filter translations with errors (red status):

"status": [ 2 ]

int[]?, Optional

bookmarks

Optional list of numeric bookmark statuses. See https://wordbee.atlassian.net/wiki/spaces/API2/pages/1793949714

Example to filter translations bookmarked in either gray or blue:

int[]?, Optional

components

Optional list of component IDs. By default this is null. If specified, the method will only dig into these components.

Example to filter translations bookmarked in either gray or blue:

Note: You can specify up to 500 elements.

string[]?, Optional

component

Optional filter on components using a prefix, suffix, infix, wildcard or regex pattern.

See https://wordbee.atlassian.net/wiki/spaces/API2/pages/1869283353 for details.

Example to filter all components starting with “frontend.”. It captures “frontend.ux”, “frontend.page1.js” etc.

 

object?, Optional

dtchange

Optional filter on the last change of a translation or its properties. See details here:

Filter changes at or after October 2021:

Filter changes since 3 days:

"dtchange": { "days": 3 }

object?, Optional

callbackurl, callback

Specify a URL which will be called upon success or failure of operation. This makes polling for operation status unnecessary. See

Optional

RESULTS

Awaiting results

The API method returns an Asynchronous operation result:


You can poll the status or use the callback parameter. When the operation is complete, the results are in the custom property


The components is the total number of filtered components. To download the actual results (list of components) pass the filetoken to this method: :

Method results

The results are a JSON array with the list of filtered components. Each element has these properties:

  • k : The component ID.

  • s : Total filtered segments with this component ID.

Note: We count the segments as they appear in the translation editor. For example, a Flex segment may be split into multiple segments in Wordbee to ease translation.

Example:

 

 

 

Copyright Wordbee - Buzzin' Outside the Box since 2008