Skip to content

resume_project

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/resume_project
HandlerOperatelyWeb.Api.Mutations.ResumeProject

Authentication#

  • Requires a valid API token.
  • Requires a write-enabled token.
  • Read-only tokens return 403.

Inputs#

FieldTypeRequiredNullableDefault
project_idid primitive (encoded as string)YesNo-
messagejson primitive (encoded as string)YesNo-
send_notifications_to_everyonebooleanNoYes-
subscriber_idsarray of id primitive (encoded as string)NoYes-

Outputs#

FieldTypeRequiredNullable
projectproject objectYesNo

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/resume_project" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"message":"value", "project_id":"value", "send_notifications_to_everyone":true, "subscriber_ids":["value"]}'

Response Example#

{
  "project": {
    "access_levels": "<access_levels>",
    "archived_at": "2026-01-01",
    "champion": "<person>",
    "closed_at": "2026-01-01",
    "contributors": [
      "<project_contributor>"
    ],
    "description": "value",
    "goal": "<goal>",
    "goal_id": "value",
    "id": "value",
    "inserted_at": "2026-01-01",
    "is_archived": true,
    "is_outdated": true,
    "is_pinned": true,
    "key_resources": [
      "<project_key_resource>"
    ],
    "last_check_in": "<project_check_in>",
    "milestones": [
      "<milestone>"
    ],
    "milestones_ordering_state": [
      "value"
    ],
    "my_role": "value",
    "name": "value",
    "next_check_in_scheduled_at": "2026-01-01",
    "next_milestone": "<milestone>",
    "next_update_scheduled_at": "2026-01-01",
    "notifications": [
      "<notification>"
    ],
    "permissions": "<project_permissions>",
    "potential_subscribers": [
      "<subscriber>"
    ],
    "privacy": "value",
    "retrospective": "<project_retrospective>",
    "reviewer": "<person>",
    "space": "<space>",
    "space_id": "value",
    "state": "active",
    "status": "value",
    "subscription_list": "<subscription_list>",
    "success_status": "achieved",
    "task_statuses": [
      "<task_status>"
    ],
    "tasks_kanban_state": "value",
    "timeframe": "<timeframe>",
    "updated_at": "2026-01-01"
  }
}