This workflow starts with a webhook trigger that listens for incoming GET requests on a specific URL path. When triggered, it retrieves the execution details of an n8n workflow execution based on the provided query parameter ‘id’.
path: "89bd1ecd-d146-4038-9377-471a4a0fdb59" — The webhook URL path to listen on.options: {} — Default options, no additional webhook options configured.responseMode: "lastNode" — After all nodes are executed, respond using the last node’s output.[0, 0]"89bd1ecd-d146-4038-9377-471a4a0fdb59"id provided in the GET request query parameter.
resource: "execution" — Indicates that the operation targets execution data.operation: "get" — Specifies fetching details about a specific execution.executionId: "={{ $json.query.id }}" — Uses dynamic expression to get the id query parameter from the webhook request.requestOptions: {} — Default request options.n8nApi credentials with ID "EA3jDaOurIeSxLKW" and name "n8n account".[360, 0]id parameter from the request query and retrieves the corresponding execution details from n8n’s system using its API. The response mode is configured to return the results from the last node after execution.