# Risk Assessment n8n operations

Manage risk assessments. Select **Risk Assessment** in the Probo node's **Resource** field.

Return to the [complete n8n resource reference](/docs/developers/api/n8n/resources) to browse another resource.

| Operation               | Value                  | Description                          | Source                                                                                                                                                    |
| ----------------------- | ---------------------- | ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Create                  | `create`               | Create a risk assessment.            | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/create.operation.ts)               |
| Create Boundary         | `createBoundary`       | Create a boundary in a scope.        | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/createBoundary.operation.ts)       |
| Create Node             | `createNode`           | Create a node in a scope.            | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/createNode.operation.ts)           |
| Create Process          | `createProcess`        | Create a process in a scope.         | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/createProcess.operation.ts)        |
| Create Scenario         | `createScenario`       | Create a scenario in a scope.        | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/createScenario.operation.ts)       |
| Create Scope            | `createScope`          | Create a scope in a risk assessment. | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/createScope.operation.ts)          |
| Create Threat           | `createThreat`         | Create a threat in a scope.          | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/createThreat.operation.ts)         |
| Delete                  | `delete`               | Delete a risk assessment.            | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/delete.operation.ts)               |
| Delete Boundary         | `deleteBoundary`       | Delete a boundary.                   | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/deleteBoundary.operation.ts)       |
| Delete Node             | `deleteNode`           | Delete a node.                       | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/deleteNode.operation.ts)           |
| Delete Process          | `deleteProcess`        | Delete a process.                    | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/deleteProcess.operation.ts)        |
| Delete Scenario         | `deleteScenario`       | Delete a scenario.                   | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/deleteScenario.operation.ts)       |
| Delete Scope            | `deleteScope`          | Delete a scope.                      | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/deleteScope.operation.ts)          |
| Delete Threat           | `deleteThreat`         | Delete a threat.                     | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/deleteThreat.operation.ts)         |
| Get                     | `get`                  | Get a risk assessment.               | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/get.operation.ts)                  |
| Get Boundary            | `getBoundary`          | Get a boundary.                      | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getBoundary.operation.ts)          |
| Get Many                | `getAll`               | Get many risk assessments.           | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getAll.operation.ts)               |
| Get Node                | `getNode`              | Get a node.                          | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getNode.operation.ts)              |
| Get Process             | `getProcess`           | Get a process.                       | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getProcess.operation.ts)           |
| Get Scenario            | `getScenario`          | Get a scenario.                      | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getScenario.operation.ts)          |
| Get Scope               | `getScope`             | Get a scope.                         | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getScope.operation.ts)             |
| Get Scope Mermaid Chart | `getScopeMermaidChart` | Get the Mermaid diagram for a scope. | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getScopeMermaidChart.operation.ts) |
| Get Threat              | `getThreat`            | Get a threat.                        | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/getThreat.operation.ts)            |
| Link Scenario Risk      | `linkScenarioRisk`     | Link a scenario to a risk.           | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/linkScenarioRisk.operation.ts)     |
| Link Scenario Threat    | `linkScenarioThreat`   | Link a scenario to a threat.         | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/linkScenarioThreat.operation.ts)   |
| Unlink Scenario Risk    | `unlinkScenarioRisk`   | Unlink a scenario from a risk.       | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/unlinkScenarioRisk.operation.ts)   |
| Unlink Scenario Threat  | `unlinkScenarioThreat` | Unlink a scenario from a threat.     | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/unlinkScenarioThreat.operation.ts) |
| Update                  | `update`               | Update a risk assessment.            | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/update.operation.ts)               |
| Update Boundary         | `updateBoundary`       | Update a boundary.                   | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/updateBoundary.operation.ts)       |
| Update Node             | `updateNode`           | Update a node.                       | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/updateNode.operation.ts)           |
| Update Process          | `updateProcess`        | Update a process.                    | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/updateProcess.operation.ts)        |
| Update Scenario         | `updateScenario`       | Update a scenario.                   | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/updateScenario.operation.ts)       |
| Update Scope            | `updateScope`          | Update a scope.                      | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/updateScope.operation.ts)          |
| Update Threat           | `updateThreat`         | Update a threat.                     | [View implementation](https://github.com/getprobo/probo/blob/main/packages/n8n-node/nodes/Probo/actions/riskAssessment/updateThreat.operation.ts)         |
