curl --request POST \
--url https://api.example.com/category/autocomplete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"typedText": "<string>",
"editionId": 123,
"languageId": null,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}Autocomplete functions returns a list of categories which match the input text. Supports paging
curl --request POST \
--url https://api.example.com/category/autocomplete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"typedText": "<string>",
"editionId": 123,
"languageId": null,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
Input model for autocomplete API to get a list of categories which match the typed text. Supports paging