Interface updateFindingStatusesParams

interface updateFindingStatusesParams {
    comment?: string;
    findingIds: string[];
    justification?: justification;
    response?: response;
    status: status;
    userId: string;
}

Properties

comment?: string

Optional comment to add to the finding status update.

findingIds: string[]

Finding ID to update the status for.

justification?: justification

Optional justification that applies to status of "NOT AFFECTED". Valid values are "COMPONENT_NOT_PRESENT", "INLINE_MITIGATIONS_ALREADY_EXIST", "VULNERABLE_CODE_CANNOT_BE_CONTROLLED_BY_ADVERSARY", "VULNERABLE_CODE_NOT_IN_EXECUTE_PATH", "VULNERABLE_CODE_NOT_PRESENT". For more details see https://docs.finitestate.io/types/finding-status-justification-enum

response?: response

Optional "Vendor Responses" that applies to status of "AFFECTED". Valid values are "CANNOT_FIX", "ROLLBACK_REQUIRED", "UPDATE_REQUIRED", "WILL_NOT_FIX", and "WORKAROUND_AVAILABLE". For more details, see https://docs.finitestate.io/types/finding-status-response-enum

status: status

Status to update the finding to. Valid values are "AFFECTED"| "FIXED", "NOT_AFFECTED", and "UNDER_INVESTIGATION". For more details, see https://docs.finitestate.io/types/finding-status-option

userId: string

User ID to update the finding status for.