Advertisement
bastiangrimm

ChatGPT make.com Webhook Spec

Oct 21st, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | Source Code | 0 0
  1. openapi: 3.1.0
  2. info:
  3. title: Make.com Webhook API
  4. description: Sends a text string as a query parameter to a Make.com webhook URL via GET request.
  5. version: 1.0.0
  6. servers:
  7. - url: https://hook.eu2.make.com
  8. description: Make.com EU2 Webhook Server
  9. paths:
  10. /XXXXXXXXXXXXXXXXXXXXX:
  11. get:
  12. operationId: sendTextToWebhook
  13. summary: Sends a text string to the specified Make.com webhook URL.
  14. description: This endpoint sends a text string to the Make.com webhook by passing it as a query parameter.
  15. parameters:
  16. - name: text
  17. in: query
  18. required: true
  19. description: The text string to send to the webhook.
  20. schema:
  21. type: string
  22. responses:
  23. '200':
  24. description: Webhook successfully received the data.
  25. '400':
  26. description: Bad request, likely due to missing or invalid query parameters.
  27. '500':
  28. description: Server error on the Make.com side.
  29.  
Tags: api chatGPT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement