curl --request POST \
--url https://api.example.com/ism/post \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"position1Text": "<string>",
"position2Text": "<string>",
"verbId": 1,
"categoryId": null,
"code": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"languageId": 123
}
'{
"error": "<string>",
"error_description": "<string>"
}Saves & Publish an ism and returns the newly created ism along with its id.
curl --request POST \
--url https://api.example.com/ism/post \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"position1Text": "<string>",
"position2Text": "<string>",
"verbId": 1,
"categoryId": null,
"code": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"languageId": 123
}
'{
"error": "<string>",
"error_description": "<string>"
}The access token received from the authorization server in the OAuth 2.0 flow.