Get an Instance Step
Gets an Instance Step by ID. The Step ID can be found with the Get Instance Steps or Find Instance Steps calls, or copied from the URL of the Instance Step.
Permissions Required
You must have Find permissions to the Instance for this request to succeed.
Method Signatre
getStep(string $id): InstanceStep
Parameters
Parameter | Type | Description |
---|---|---|
$id | string | The id of the Instance Step to get |
returns | InstanceStep | The requested Instance Step |
Example
<?php
/*
* This example demonstrates getting an Instance Step by ID
*/
require_once(__DIR__ . '/vendor/autoload.php');
use Catalytic\Sdk\CatalyticClient;
$catalytic = new CatalyticClient();
$instance = $catalytic->instances()->getStep('541eec6f-d20e-4523-a4fb-8d030302e896');
Updated almost 4 years ago