ts.dod.unassign

Remove DoD policy from an endeavour.

Remove DoD policy from an endeavour.

Requires authentication

Description

Removes the currently assigned DoD policy from an endeavour. Tasks in the endeavour will no longer be subject to DoD checks.

Parameters

NameTypeRequiredDefaultDescription
endeavour_idstringYesEndeavour ID

Response

Returns the unassignment confirmation.

{
  "endeavour_id": "edv_a1b2c3d4e5f6",
  "unassigned": true
}

Errors

CodeDescription
not_authenticatedNo active login for this session
invalid_inputendeavour_id is required
not_foundEndeavour does not exist or has no assigned policy

Examples

Remove DoD from endeavour

Request:

{
  "endeavour_id": "edv_a1b2c3d4e5f6"
}

Response:

{
  "endeavour_id": "edv_a1b2c3d4e5f6",
  "unassigned": true
}