curl --request POST \
--url https://api.example.com/ism-list/item/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 123,
"ismID": 123
}
'{
"success": true,
"data": "<unknown>"
}Adds a single item into a given ism list, adding to whatever was in their before.
curl --request POST \
--url https://api.example.com/ism-list/item/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 123,
"ismID": 123
}
'{
"success": true,
"data": "<unknown>"
}