Skip to content About The people and vision powering Probo Blog The latest news from Probo Stories Hear from our customers Changelog Latest product updates Docs Documentation for Probo GitHub Explore our open-source compliance tools

CLI: Findings

The prb finding commands let you create, list, view, update, and delete findings. Findings track nonconformities, observations, and exceptions identified during audits.

Terminal window
prb finding create \
--organization ORG_ID \
--kind MAJOR_NONCONFORMITY \
--status OPEN \
--priority HIGH \
--description "Missing access review process"
FlagRequiredDescription
--organizationYesOrganization ID
--kindNoFinding kind: MINOR_NONCONFORMITY, MAJOR_NONCONFORMITY, OBSERVATION, EXCEPTION
--statusNoStatus: OPEN, IN_PROGRESS, CLOSED, RISK_ACCEPTED, MITIGATED, FALSE_POSITIVE
--priorityNoPriority: LOW, MEDIUM, HIGH
--descriptionNoFinding description
--sourceNoSource of the finding
--identified-onNoDate the finding was identified
--root-causeNoRoot cause analysis
--corrective-actionNoCorrective action plan
--owner-idNoOwner (user ID)
--due-dateNoDue date for resolution
--risk-idNoLinked risk ID
--effectiveness-checkNoEffectiveness check details
Terminal window
prb finding list --organization ORG_ID
FlagDefaultDescription
--organizationRequired. Organization ID
--limit, -L30Maximum number of results
--order-byCREATED_ATSort field: CREATED_AT, REFERENCE_ID, IDENTIFIED_ON, DUE_DATE, STATUS, PRIORITY, KIND
--order-directionDESCSort direction: ASC or DESC
--kindFilter by kind
--jsonOutput as JSON
Terminal window
prb finding view FINDING_ID
FlagDescription
--output, -oOutput format
Terminal window
prb finding update FINDING_ID --status IN_PROGRESS --corrective-action "Implementing quarterly access reviews"
FlagDescription
--descriptionUpdated description
--sourceUpdated source
--identified-onUpdated identification date
--root-causeUpdated root cause
--corrective-actionUpdated corrective action
--owner-idUpdated owner
--due-dateUpdated due date
--statusUpdated status
--priorityUpdated priority
--risk-idUpdated linked risk
--effectiveness-checkUpdated effectiveness check
Terminal window
prb finding delete FINDING_ID