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>"
}Saving new Ism List with no items to at them later.
ConcatListTypeID: (int)
1 = Featured: Featured Ism List.2 = Completion P1: Isms List with Word Position 1 completed.3 = Completion P2: Isms List with Word Position 2 completed..4 = Trending: Trending 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>"
}The access token received from the authorization server in the OAuth 2.0 flow.