API - Ability to Create a Group with Description

Endpoints:
POST https://api.zoom.us/v2/groups (Create a Group)
PATCH [https://api.zoom.us/v2/groups/{groupId} (Update a Group)

I would like to create a group with a description for the group. Alternatively just update the description field for the group.

In the API documentation for both the Create and Update endpoints you are only able to specify the name property.

Request Body:

{
“name”: “Developers”
}

Would like to add the optional Description field through the API as well.

Thank you.