Filtering workflow sessions
Attribute
Type
Example - Get all workflow sessions for an outcome
curl -X GET https://api.complycube.com/v1/workflowSessions?outcome=clear \
-H 'Authorization: <YOUR_API_KEY>'from complycube import ComplyCubeClient
cc_api = ComplyCubeClient(api_key='<YOUR_API_KEY>')
wf_sessions = cc_api.workflowsessions.list(outcome='clear')use ComplyCube\ComplyCubeClient;
$ccapi = new ComplyCubeClient('<YOUR_API_KEY>');
$wf_sessions = $ccapi->workflowSessions()->list(['outcome' => 'clear']);using ComplyCube.Net;
using ComplyCube.Net.Resources.WorkflowSessions;
var wfSessionsApi = new WorkflowSessionApi(new ComplyCubeClient("<YOUR_API_KEY>"));
var filter = new WorkflowSessionRequest { outcome = "clear" }
var wfSessions = await wfSessionsApi.ListAsync(filter);
