This page is about an old version of Active Collab that's not developed anymore.
Click here to open the documentation for the latest version.

Shared Resource: Completion Status Commands

These commands let you mark the parent object as completed or to reopen it.

{context}/complete #

This command marks a parent object as completed. If successful, the system will return the parent object details.

Method: POST

Request example:

1
submitted = submitted

Response:

1
2
3
4
5
6
<subtask>
  <id>2</id>
  ...
  <is_completed>1</is_completed>
  ...
</subtask>

{context}/reopen #

This command reopens the parent object. If successful, this command will return all parent object details.

Method: POST

Request example:

1
submitted = submitted

Response:

1
2
3
4
5
6
<subtask>
  <id>2</id>
   ...
  <is_completed>0</is_completed>
   ...
</subtask>