Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting a Curl command to run in a Zapier Webhook

I'm trying to find a way to run this curl command in the Webhook Zap on Zapier, but I can't seem to figure it out. How would I enter this in the Webhook? Would it be better to run it as a Code Zap?

curl -X POST "https://api.zoom.us/v2/users?access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmY3FvTHlyRVRpR3VmWmw2dW1ZU2NBIiwiaWF0IjoxNTI4Njc0OTUxLCJleHAiOjE1Mjg2OTI5NTF9.fvDzS8-UtHyO_YUF5-eqLyuopAuoL48SRwKxcOV1YrE" -H "accept: application/json" -H "Content-Type: application/json" -d "{ \"action\": \"create\", \"user_info\": { \"email\": \"[email protected]\", \"type\": 1, \"first_name\": \"Chris\", \"last_name\": \"G\", \"password\": \"Test54321\" }}"
like image 456
Chris Graham Avatar asked Jan 27 '23 23:01

Chris Graham


1 Answers

David here, from the Zapier Platform team. Luckily, this is an easy one. Since you're using nested data, you'll need to use Webhooks by Zapier's Custom Request. The setup is the following:

Body & URL: enter image description here

Headers: enter image description here

You can also do it through code, you'll have the same result.

Also, if that access_token is still live, make sure to revoke it now that it's been out in the public!

like image 169
xavdid Avatar answered Feb 20 '23 15:02

xavdid