created (new tag IDs and names) and duplicates (tags that already existed).curl --location --request POST 'https://platform-api.convirza.com/v3/tag' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"tag": {
"org_unit_id": 70035,
"tagList": [
{
"tag_name": "Sales Lead"
},
{
"tag_name": "Hot Lead"
}
]
}
}'{
"code": 200,
"message": "Success",
"data": {
"inserted_tags": [
{
"tag_id": 456,
"tag_name": "Sales Lead"
}
],
"existing_tags": [
"Hot Lead"
]
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}