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

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
actions
object[]
required
next
string
prev
string