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>"
}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>"
}The access token received from the authorization server in the OAuth 2.0 flow.