Auto-completion and pagination
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 }
Â
Â
Â
Copyright Wordbee - Buzzin' Outside the Box since 2008