Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

...

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:

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

status

Optional list of numeric translation statuses. See Text Status (Enumeration)

Example to filter translations with errors (red status):

Code Block
"status": [ 2 ]

int[]?, Optional

bookmarks

Optional list of numeric bookmark statuses. See Text Bookmark (Enumeration)

Example to filter translations bookmarked in either gray or blue:

Code Block
"bookmarks": [ 0, 1 ]

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:

Code Block
"components": [ "frontend.module1", "backend.sql", "backend.classes" ]

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 String filter (Filter) for details.

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

Code Block
"component": { "value": "frontend.", "mode": "Prefix" ]

object?, Optional

dtchange

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

Filter changes at or after October 2021:

Code Block
"dtchange": { "min": "2021-10-01T00:00:00Z" }

Filter changes since 3 days:

"dtchange": { "days": 3 }

object?, Optional

callbackurl, callback

Optional

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

results (see below) unnecessary. URL is called as POST request with operation result included in the body, see "RESULTS" chapter below for the JSON format. Suggestion: Include your own references in the URL.
Code Block
"callbackurl": "http://callmeback.mycompany.com?operationid=22222&mydata=abcde"
string?,

operation status unnecessary. See Callbacks (with asynchronous operations)

Optional

RESULTS

Awaiting results

The API method returns an Asynchronous operation result:

...