curl --location --request POST 'https://app.asana.com/api/1.0/tags' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "name": "Stuff to buy",
        "color": "light-green",
        "followers": [
            "12345",
            "42563"
        ],
        "workspace": "12345"
    }
}'{
    "data": {
        "gid": "12345",
        "resource_type": "task",
        "name": "Stuff to buy",
        "color": "light-green",
        "followers": [
            {
                "gid": "12345",
                "resource_type": "task",
                "name": "Greg Sanchez"
            }
        ],
        "permalink_url": "https://app.asana.com/0/resource/123456789/list",
        "workspace": {
            "gid": "12345",
            "resource_type": "task",
            "name": "My Company Workspace"
        }
    }
}