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

ParameterTypeDescription
$idstringThe id of the Instance Step to get
returnsInstanceStepThe 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');