Dutch not supported for language interpretation via API call to create meeting

Creating meeting via API-call and enabling language interpretation for dutch (NL)

Description
Building on the request body as documented by @MaxM (Setting Language Interpretation (or using template that has it) via POST /users/{userId}/meetings endpoint does not work - #3 by MarcelB), creating a meeting with interpretation enabled works for me.

However, using NL as language code is not supported via API-call. Dutch is supported when creating a meeting via the GUI of the Zoom Client

Error
Response code 404, bad request

Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT

Which Endpoint/s?
POST https://api.zoom.us/v2/users/me/meetings

How To Reproduce

  1. create meeting with this body is successful:
{
  ...
  "settings": {
    "language_interpretation": {
      "enable": "true",
      "interpreters": [
        {
          "email": "interpreter@mydomain",
          "languages": "US,FR"
        }
      ]
    }
  }
}
  1. create meeting with this body is NOT successful:
{
  ...
  "settings": {
    "language_interpretation": {
      "enable": "true",
      "interpreters": [
        {
          "email": "interpreter@mydomain",
          "languages": "US,NL"
        }
      ]
    }
  }
}

Thank you for calling attention to this. I will do some testing on my end to reproduce. To confirm, are you still seeing this behavior on your end ?

Regards,
Donte