Triggers

Get a trigger

Get one agent trigger (scheduled run or webhook) by id. Requires a workspace admin API key.

get/api/v1/w/{wId}/triggers/{tId}

Path parameters

wIdstring required

ID of the workspace

tIdstring required

ID of the trigger

Response

The trigger

Example response

{
  "trigger": {
    "id": 12345,
    "sId": "0ec9852c2f",
    "name": "Daily summary",
    "agentConfigurationId": "8f3a1c2d9e",
    "createdAt": 1625097600,
    "webhookSource": {
      "provider": "github"
    }
  }
}

Changes