Webhook Settings does not include more fields

I am using webhooks for my app. I have added webhook event for create meeting and while recieving create meeting request, in the request object there is an object called settings and in that settings I only recieve two properties and nothing more.

"event":"meeting.created",
"payload":{
    "account_id":"GlHp9n7ZRHmrrclzMC1k5Q",
    "operator":"gokul.devarajan-14793@zohocorp.com",
    "operator_id":"EWErPRIXSkeCmBdSBCL8lg",
    "object":{
        "uuid":"xb1Ay8KQRjGJuV8dgSq4Ww==",
        "id":99376634296,
        "host_id":"EWErPRIXSkeCmBdSBCL8lg",
        "topic":"Test fields",
        "type":2,
        "start_time":"2023-01-13T10:30:00Z",
        "duration":45,
        "timezone":"Asia/Calcutta",
        "join_url":"https://zoom.us/j/99376634296?pwd=dGRFZFFDdWl1c0g5TGVqZlRCcE5ZZz09",
        "password":"123456",
        "settings":{
            "use_pmi":false,
            "alternative_hosts":""
        },
        "is_simulive":false
    }
},
"event_ts":1673604519900

But I need the custom keys properties to be shared in settings during webhook request.

Is there anything can be done for that?

@usertestdelete92 Hope you will be fine.

:point_up_2: You can’t customize the WebHook payload. To get custom_keys you need to build a get request by getting the meeting id from Webhook Payload once webhook trigger is received.

It means we can’t get the custom keys on webhook payload, We can only get it by a get request. Is that Right.

@usertestdelete92 You can submit a feature request to Zoom for that. But for now yes.

@freelancer.nak OK. Thanks

This topic was automatically closed 368 days after the last reply. New replies are no longer allowed.