Many API methods implement optional auto-completion and pagination functionality:
-
Languages: settings/languages, settings/languages/codes
-
Task codes: settings/tasks/codes
-
Generic lists: ./list/autocomplete (post)
-
etc.
URL
Call the API with HTTP POST to use auto-completion and/or pagination.
PARAMETERS
Parameters are included as JSON in the request body:
|
prefix |
The text to auto-complete. The text must contain at least 1 character. |
Optional, string |
|
skip |
Optional. Used with paginating auto-completion results. Default: 0 |
Optional, int? |
|
take |
Optional. The maximum amount of items to retrieve. An API method may preset a default or a maximum value. |
Optional, int? |
EXAMPLES
A few examples:
{ "prefix": "ab" }
{ "prefix": "ab", "take": 20 }
{ "skip": 20, "take": 10 }