This module provides functions for retrieving workflow dependency resources in the Humaans API. Workflow dependencies are retrieve-only via the API.
Summary
Functions
Retrieves a specific workflow_dependency by ID.
Types
Functions
@spec retrieve(client :: map(), id :: String.t()) :: {:ok, Humaans.Resources.WorkflowDependency.t()} | {:error, Humaans.Error.t()}
Retrieves a specific workflow_dependency by ID.
Parameters
client- Client created withHumaans.new/1id- String ID of the workflow_dependency to retrieve
Examples
client = Humaans.new(access_token: "your_access_token")
{:ok, workflow_dependency} = Humaans.WorkflowDependencies.retrieve(client, "workflow_dependency_id")