curl --request POST \
--url https://api.example.com/ism/suggested-items-db \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forPositionCode": "ONE|TWO",
"languageID": 1,
"page": 1,
"pageSize": 10,
"isAutocomplete": false,
"positionOneWordID": null,
"positionOne": "Summer",
"verbID": null,
"verb": "is",
"positionTwoWordID": null,
"positionTwo": "Hot"
}
'{
"success": true,
"data": "<unknown>"
}Suggestion function for ism position 1 and position 2 text from the database. Supports paging.
curl --request POST \
--url https://api.example.com/ism/suggested-items-db \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forPositionCode": "ONE|TWO",
"languageID": 1,
"page": 1,
"pageSize": 10,
"isAutocomplete": false,
"positionOneWordID": null,
"positionOne": "Summer",
"verbID": null,
"verb": "is",
"positionTwoWordID": null,
"positionTwo": "Hot"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
1