Gestiono
Referencia de APIAutomations / Webhook

Get Webhook by automationid info

GET /v1/automation/webhook/:automationId/info • described through route-level inference

← Back to full API reference
GET/v1/automation/webhook/:automationId/infoPublic endpoint
  • This endpoint can be called without an authenticated session.
  • This route is commonly used as a webhook endpoint.

Request details

Path params

  • automationId

    Required path parameter.

Query params

No explicit query schema was captured for this endpoint.

Body fields

No body payload expected for GET endpoints.

Default payloads

Path params

json
{
  "automationId": 1
}

Query

json
{}

Sample response

json
{
  "webhookUrl": "<value>",
  "method": "POST",
  "headers": {
    "Content-Type": "application/json",
    "X-Webhook-Secret": "<your-webhook-secret>"
  },
  "example": {
    "body": {
      "name": "Example",
      "data": {
        "key": "value"
      }
    },
    "templateAccess": [
      "{{webhook.name}} → \"Example\"",
      "{{webhook.data.key}} → \"value\""
    ]
  }
}

Test this endpoint now

Use your own credentials and execute a live request directly from this page.

1. Configure authentication for testing

You can test endpoints with signed API keys, a raw Authorization token, or browser cookies. Select one mode and fill in the required fields.

2. Select endpoint

GET/v1/automation/webhook/:automationId/infoPublic endpoint

Group: Automations / Webhook

GET /v1/automation/webhook/:automationId/info • described through route-level inference

  • This endpoint can be called without an authenticated session.
  • This route is commonly used as a webhook endpoint.

Path params

  • automationIdrequired

3. Prepare request payload

4. Server response

Run a request to inspect the real-time response for your environment.