curl --request POST \
--url https://api.example.com/ism-list/items/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 1,
"items": "[5431,4561,67856,3423]"
}
'{
"success": true,
"data": "<unknown>"
}Adds multiple items into a given ism list, adding to whatever was in their before.
curl --request POST \
--url https://api.example.com/ism-list/items/add \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ismListID": 1,
"items": "[5431,4561,67856,3423]"
}
'{
"success": true,
"data": "<unknown>"
}