Skip to main content
POST
/
ism-list
/
save
Saving new Ism List.
curl --request POST \
  --url https://api.example.com/ism-list/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "New Ism List ABC 123",
  "languageID": 1,
  "editionID": 1,
  "ismListTypeID": 1,
  "position1WordID": 123,
  "position1IserID": 123,
  "verbID": 123,
  "position2WordID": 123,
  "position2IserID": 123,
  "categoryID": 123,
  "isFeatured": true,
  "isHidden": true
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
title
string | null
default:New Ism List ABC 123
languageID
integer<int32>
default:1
editionID
integer<int32>
default:1
ismListTypeID
integer<int32>
default:1
position1WordID
integer<int32> | null
position1IserID
integer<int32> | null
verbID
integer<int32> | null
position2WordID
integer<int32> | null
position2IserID
integer<int32> | null
categoryID
integer<int32> | null
isHidden
boolean | null

Response

Success

success
boolean
data
unknown