GET
/
o
/
{organisation_id}
/
connectors
/
{connector_id}
/
versions
/
{version}
/
actions
curl --request GET \
  --url https://platform.versori.com/api/connect/v1/o/{organisation_id}/connectors/{connector_id}/versions/{version}/actions \
  --header 'Authorization: Bearer <token>'
{
  "totalCount": 123,
  "next": "<string>",
  "prev": "<string>",
  "actions": [
    {
      "id": "<string>",
      "errors": [
        {
          "field": "<string>",
          "message": "<string>",
          "severity": "error"
        }
      ],
      "type": "http",
      "name": "<string>",
      "summary": "<string>",
      "description": "<string>",
      "method": "GET",
      "path": "<string>",
      "parameters": [
        {
          "name": "<string>",
          "in": "cookie",
          "required": true,
          "type": "string",
          "default": "<any>",
          "completion": {}
        }
      ],
      "requestBody": {
        "required": true,
        "definitions": [
          {
            "id": "<string>",
            "definition": {
              "id": "<string>",
              "name": "<string>",
              "accept": [
                "<string>"
              ],
              "description": "<string>",
              "url": "<string>",
              "referencedBy": [
                {
                  "type": "definition",
                  "id": "<string>",
                  "name": "<string>"
                }
              ]
            }
          }
        ]
      },
      "responses": [
        {
          "status": 123,
          "id": "<string>",
          "definitions": [
            {
              "id": "<string>",
              "definition": {
                "id": "<string>",
                "name": "<string>",
                "accept": [
                  "<string>"
                ],
                "description": "<string>",
                "url": "<string>",
                "referencedBy": [
                  {
                    "type": "definition",
                    "id": "<string>",
                    "name": "<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
required
connector_id
string
required

ID is the unique identifier of the Connector.

version
string
required

Version is the version name of the Connector to retrieve. The reserved names "latest" and "default" may be used to retrieve the latest version or the default version respectively.

Query Parameters

first
integer
default:
20
after
string
before
string
name
string

Name filters Actions by name using a case-insensitive substring-match.

Response

200
application/json
OK

ActionPage defines a paginated list of Actions.

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