Skip to main content
POST
/
ism
/
save
Saves an ism and returns the newly created ism along with its id.
curl --request POST \
  --url https://api.example.com/ism/save \
  --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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
position1Text
string
required
Minimum string length: 1
position2Text
string
required
Minimum string length: 1
verbId
integer<int32>
default:1
required
categoryId
integer<int32> | null
code
string<uuid> | null
languageId
integer<int32>

Response

Success

error
string | null
error_description
string | null