Skip to content

post_project_check_in

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/post_project_check_in
HandlerOperatelyWeb.Api.Mutations.PostProjectCheckIn

Authentication#

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

Inputs#

FieldTypeRequiredNullableDefault
project_idstringNoYes-
statusstringNoYes-
descriptionstringNoYes-
send_notifications_to_everyonebooleanNoYes-
subscriber_idsarray of stringNoYes-

Outputs#

FieldTypeRequiredNullable
check_inproject_check_in objectNoYes

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/post_project_check_in" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"description":"value", "project_id":"value", "send_notifications_to_everyone":true, "status":"value", "subscriber_ids":["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>"
  }
}