curl --request POST \
--url https://api.example.com/verb/propose \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"verbText": "stampeded",
"concatCode": null
}
'{
"success": true,
"data": "<unknown>"
}Saves a new proposed verb, setting it intitially to a ‘Pending’ status for further review. Will return back a new verb ID value, so the user can keep moving forward in the ism creation process.
curl --request POST \
--url https://api.example.com/verb/propose \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 1,
"verbText": "stampeded",
"concatCode": null
}
'{
"success": true,
"data": "<unknown>"
}