Skip to main content
GET
/
o
/
{organisation_id}
/
systems
/
{system_id}
/
triggers
List triggers for a system.
curl --request GET \
  --url https://platform.versori.com/api/v2/o/{organisation_id}/systems/{system_id}/triggers \
  --header 'Authorization: Bearer <token>'
{
  "totalCount": 123,
  "triggers": [
    {
      "id": "<string>",
      "systemId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "summary": "<string>",
      "parameters": [
        {
          "name": "<string>",
          "required": true,
          "default": "<string>"
        }
      ]
    }
  ],
  "next": "<string>",
  "prev": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.versori.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication used by the Versori Platform. External consumers must provide an API key, however internal consumers must provide a JWT id_token issued by our IdP.

Path Parameters

organisation_id
string<ulid>
required
system_id
string<ulid>
required

Query Parameters

project_id
string

Response

OK

totalCount
integer
required
triggers
object[]
required
next
string
prev
string