Auto-completion and pagination

Many API methods implement optional auto-completion and pagination functionality: 

URL

Call the API with HTTP POST to use auto-completion and/or pagination.

PARAMETERS

Parameters are included as JSON in the request body:

 

prefixThe text to auto-complete. The text must contain at least 1 character.Optional, string
skipOptional. Used with paginating auto-completion results. Default: 0Optional, 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