ts.dod.status

Show DoD policy and endorsement status for an endeavour.

Show DoD policy and endorsement status for an endeavour.

Requires authentication

Description

Returns the DoD policy assigned to an endeavour along with its endorsement status. Shows which team members have endorsed the current policy version and which have not.

Parameters

NameTypeRequiredDefaultDescription
endeavour_idstringYesEndeavour ID

Response

Returns the DoD status for the endeavour.

{
  "endeavour_id": "edv_a1b2c3d4e5f6",
  "endorsements": [],
  "policy_id": "dod_a1b2c3d4e5f6",
  "policy_name": "Standard Task Completion",
  "policy_version": 1
}

Errors

CodeDescription
not_authenticatedNo active login for this session
invalid_inputendeavour_id is required

Examples

Check endeavour DoD status

View the assigned DoD policy and who has endorsed it.

Request:

{
  "endeavour_id": "edv_a1b2c3d4e5f6"
}

Response:

{
  "endeavour_id": "edv_a1b2c3d4e5f6",
  "endorsements": [],
  "policy_id": "dod_a1b2c3d4e5f6",
  "policy_name": "Standard Task Completion",
  "policy_version": 1
}