Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- openapi: 3.1.0
- info:
- title: Make.com Webhook API
- description: Sends a text string as a query parameter to a Make.com webhook URL via GET request.
- version: 1.0.0
- servers:
- - url: https://hook.eu2.make.com
- description: Make.com EU2 Webhook Server
- paths:
- /XXXXXXXXXXXXXXXXXXXXX:
- get:
- operationId: sendTextToWebhook
- summary: Sends a text string to the specified Make.com webhook URL.
- description: This endpoint sends a text string to the Make.com webhook by passing it as a query parameter.
- parameters:
- - name: text
- in: query
- required: true
- description: The text string to send to the webhook.
- schema:
- type: string
- responses:
- '200':
- description: Webhook successfully received the data.
- '400':
- description: Bad request, likely due to missing or invalid query parameters.
- '500':
- description: Server error on the Make.com side.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement