Workflow Incoming Webhooks

Get an incoming webhook

Returns an incoming webhook by its ID for a workflow.

get/workflows/{workflowId}/incoming-webhooks/{webhookId}

Path parameters

workflowIdstring required

The ID of the Workflow

webhookIdstring required

The ID of the Webhook

Response

Example response

{
  "data": {
    "createdBy": {
      "id": "oU4EEGRPtELpR1x1YUJMeQ",
      "email": "jane.doe@example.com",
      "username": "Jane Doe"
    },
    "updatedBy": {
      "id": "oU4EEGRPtELpR1x1YUJMeQ",
      "email": "jane.doe@example.com",
      "username": "Jane Doe"
    },
    "workflowId": "oSN0x0Mcw4hbhTJDwRxHew",
    "links": [
      {
        "href": "https://api.process.st/api/v1.1/resource/XXX"
      }
    ]
  },
  "links": [
    {
      "href": "https://api.process.st/api/v1.1/resource/XXX"
    }
  ]
}

Changes