Skip to content

edit_project_check_in

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/edit_project_check_in
HandlerOperatelyWeb.Api.Mutations.EditProjectCheckIn

Authentication#

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

Inputs#

FieldTypeRequiredNullableDefault
check_in_idstringNoYes-
statusstringNoYes-
descriptionstringNoYes-

Outputs#

FieldTypeRequiredNullable
check_inproject_check_in objectNoYes

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/edit_project_check_in" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"check_in_id":"value", "description":"value", "status":"value"}'

Response Example#

{
  "check_in": {
    "acknowledged_at": "2026-01-01T09:30:00Z",
    "acknowledged_by": "<person>",
    "author": "<person>",
    "comments_count": 123,
    "description": "value",
    "id": "value",
    "inserted_at": "2026-01-01",
    "notifications": [
      "<notification>"
    ],
    "potential_subscribers": [
      "<subscriber>"
    ],
    "project": "<project>",
    "reactions": [
      "<reaction>"
    ],
    "space": "<space>",
    "status": "on_track",
    "subscription_list": "<subscription_list>"
  }
}