Get all Instance Steps

Gets all steps in an instance.

šŸ‘

Permissions Required

You must have Find permissions to the Instance for this request to succeed.

Method Signature

getSteps(string $id): array

Parameters

ParameterTypeDescription
$idstringThe id of the Instance to get Steps from
returnsarrayThe Instance Steps for the requested Instance

Example

<?php

/*
 * This example demonstrates getting an Instance's Steps by the Instance ID
 */

require_once(__DIR__ . '/vendor/autoload.php');

use Catalytic\Sdk\CatalyticClient;

$catalytic = new CatalyticClient();
$steps = $catalytic->instances()->getSteps('f956af4a-6e2c-4bee-9f6e-09d3387b7c8c');