Skip to main content
POST
/
admin
/
ism-list
/
update
Update Ism List history by id.
curl --request POST \
  --url https://api.example.com/admin/ism-list/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ismListID": 123,
  "languageID": 1,
  "title": "some ism list title",
  "ismListTypeID": 1,
  "categoryID": 123,
  "slug": "<string>",
  "isFeatured": true,
  "isActive": true,
  "editionID": 123,
  "Position1WordID": 123,
  "position1IserID": 123,
  "verbID": 123,
  "position2WordID": 123,
  "position2IserID": 123
}
'
{
  "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
ismListID
integer<int32>
default:123
languageID
integer<int32>
default:1
title
string | null
default:some ism list title
ismListTypeID
integer<int32> | null
default:1
categoryID
integer<int32> | null
slug
string | null
isActive
boolean | null
editionID
integer<int32> | null
Position1WordID
integer<int32> | null
position1IserID
integer<int32> | null
verbID
integer<int32> | null
position2WordID
integer<int32> | null
position2IserID
integer<int32> | null

Response

Success

success
boolean
data
unknown