Tracking Fields Not Showing in "Get Meeting" Request From Zoom API

Hey @jroorda,

Did you add the respective tracking field first:

Once I added a tracking field, and then set it in the Create Meeting API request I was able to get the tracking_fields in the response.

{
    "uuid": "rfB6f6nrQI+01hFcfx7zBQ==",
    "id":,
    "host_id": "",
    "topic": "15.000 Test Course CREATED BY API",
    "type": 8,
    "status": "waiting",
    "timezone": "America/New_York",
    "agenda": "Test Course CREATED BY API",
    "created_at": "2020-04-28T19:55:57Z",
    "start_url": "",
    "join_url": "",
    "password": "",
    "h323_password": "",
    "pstn_password": "",
    "encrypted_password": "",
    "occurrences": [
        {
            "occurrence_id": "1588107600000",
            "start_time": "2020-04-28T21:00:00Z",
            "duration": 90,
            "status": "available"
        },
        {
            "occurrence_id": "1588280400000",
            "start_time": "2020-04-30T21:00:00Z",
            "duration": 90,
            "status": "available"
        },
        {
            "occurrence_id": "1588712400000",
            "start_time": "2020-05-05T21:00:00Z",
            "duration": 90,
            "status": "available"
        },
        {
            "occurrence_id": "1588885200000",
            "start_time": "2020-05-07T21:00:00Z",
            "duration": 90,
            "status": "available"
        }
    ],
    "settings": {
        "host_video": true,
        "participant_video": true,
        "cn_meeting": false,
        "in_meeting": false,
        "join_before_host": false,
        "mute_upon_entry": false,
        "watermark": false,
        "use_pmi": false,
        "approval_type": 2,
        "audio": "voip",
        "auto_recording": "none",
        "enforce_login": false,
        "enforce_login_domains": "",
        "alternative_hosts": "",
        "close_registration": false,
        "registrants_confirmation_email": true,
        "waiting_room": false,
        "registrants_email_notification": true,
        "meeting_authentication": false
    },
    "recurrence": {
        "type": 2,
        "repeat_interval": 1,
        "weekly_days": "3,5",
        "end_date_time": "2020-05-09T15:00:00Z"
    },
    "tracking_fields": [
        {
            "field": "Test",
            "value": "TestValue2"
        }
    ]
}

Thanks,
Tommy