curl --request POST \
--url https://api.example.com/verb/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"position1Text": "<string>",
"typedVerbText": "<string>",
"editionId": 123,
"languageId": null,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}Autocomplete function to return verbs which match the typed verb text (e.g. ‘c’ -> can, calls, cancelled). Supports paging.
curl --request POST \
--url https://api.example.com/verb/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"position1Text": "<string>",
"typedVerbText": "<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 to get verbs. Supports paging.
Ism position 1 text. Only applies to specific verb API calls.
Typed text / prefix that the user has typed into the verb input box. Used for autocomplete.
For future use.
For future use.