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
Parameter | Type | Description |
---|---|---|
$id | string | The id of the Instance to get Steps from |
returns | array | The 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');
Updated about 3 years ago