cancel
Showing results for 
Search instead for 
Did you mean: 

On April 16, between 2:25 P.M. ET and 4:12 P.M. ET, the domain zoom.us was not available due to a server block by GoDaddy Registry. This block was the result of a communication error between Zoom’s domain registrar, Markmonitor, and GoDaddy Registry, which resulted in GoDaddy Registry mistakenly shutting down zoom.us domain. Zoom, Markmonitor, and GoDaddy worked quickly to identify and remove the block, which restored service to the domain zoom.us. There was no product, security or network failure at Zoom during the outage. GoDaddy and Markmonitor are working together to prevent this from happening again.

Using curl command to send notification to zoom channel via webhook url and secret token

sudhsriv
Newcomer
Newcomer

Hi,

Not sure if this is the right place for posting this query, if not then please guide whom should I approach?

I am trying to send notification messages to zoom channel using curl command.

I got the webhook url and secret token from zoom+gitlab integration setup

 

curl -X POST -H "Content-Type: application/json1" \
     -H "Authorization: Bearer TOKEN" \
     --data '{
           "text": "hello"
         }' https://applications.zoom.us/addon/v1/gitlab/webhooks/eRJ2gJV9QSWymvXEKYn0FA?sig=<somealphanumericdata>&rnd=<somenumericdata>
 
But above command results in internal server error. Is the command correct?
Thanks in advance for any sort of guidance.
1 REPLY 1

sudhsriv
Newcomer
Newcomer

I have added content-type value as application/json to json1 cause it was not letting me post.