Two issues here. If you try to post an array of tags when creating/updating a subscriber as per the docs:
req.body [Object: null prototype] {
email: 'test@icloud.com',
tags: '["tag1", "tag2"]'
}
then it passes an array of an array:
"tags": [
"[\"tag1\", \"tag2\"]"
],
however, even if I fix this and just pass just a comma string:
"tags": [
"\"tag1\",\"tag2\""
],
Drip still stores it like this:
