curl --request POST \
--url https://api.example.com/ism/suggested-items-ai \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"typedText": null,
"forPositionCode": "ONE|TWO",
"languageID": 1,
"page": 1,
"pageSize": 10,
"isAutocomplete": false
}
'{
"success": true,
"data": "<unknown>"
}Suggestion function for ism position 1 and position 2 text from the various large language models actively in use. Supports paging.
curl --request POST \
--url https://api.example.com/ism/suggested-items-ai \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"typedText": null,
"forPositionCode": "ONE|TWO",
"languageID": 1,
"page": 1,
"pageSize": 10,
"isAutocomplete": false
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.