v1

latestOpenAPI 3.1.12026-07-242899061.7 MB
Target Of Evaluation TOE

This endpoint moves an existing TOE from one risk relationship folder to another

User can move a TOE from one risk relationship folder to another by providing the toe_id and relationship folder slug in request. Relationship folder slug can be retrieved from /v1/portfolio/risk_relationships_folders.

put/v1/toes/risk_relationships

Request body

toe_idstring uuid required

The unique identifier for the Target Of Evaluation (TOE).

risk_relationship_slugsstring[] required

Risk relationship slugs which are returned from /v1/portfolio/risk_relationships_folders

Example request

{
  "toe_id": "5976423a-ee35-11e3-8569-14109ff1a304",
  "risk_relationship_slugs": [
    "ownenterprise_critical"
  ]
}

Response

OK

toe_idstring uuid required

The unique identifier for the Target Of Evaluation (TOE).

risk_relationship_slugsstring[] required

Risk relationship slugs which are returned from /v1/portfolio/risk_relationships_folders

Example response

{
  "toe_id": "5976423a-ee35-11e3-8569-14109ff1a304",
  "risk_relationship_slugs": [
    "ownenterprise_critical"
  ]
}