curl --request POST \
--url https://api.example.com/verb/validate-verb-conjunction \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"suggestionlimit": 123,
"verbs": [
{
"verb": null
}
],
"conjunctions": [
{
"conjunction": null
}
]
}
'{
"success": true,
"data": "<unknown>"
}Receives the attempted use of a verb or a conjunction, and performs a validation of either, returning back potential alternatives if invalid.
curl --request POST \
--url https://api.example.com/verb/validate-verb-conjunction \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"suggestionlimit": 123,
"verbs": [
{
"verb": null
}
],
"conjunctions": [
{
"conjunction": null
}
]
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.