Triggers

Get trigger

Retrieve a trigger owned by the authenticated caller.

get/api/triggers/{trigger_id}

Path parameters

trigger_idstring required

ID of the trigger to retrieve.

Response

Successful response.

request_idstring required

Platform-generated request ID for support correlation.

Example response

{
  "trigger": {
    "trigger_id": "trigger_test_123",
    "preset_id": "GITHUB_1",
    "description": "Reviews I am tagged on, sent to my team's review channel",
    "status": "ENABLED",
    "inputs": {
      "repository": "acme/payments-api"
    },
    "delivery": {
      "webhook_url": "https://customer.app/webhook",
      "auth": {
        "secret": "secret_test_123"
      }
    }
  }
}

Changes