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