Endpoint#
| Property | Value |
|---|
| Type | mutation |
| Method | POST |
| Path | /api/external/v1/acknowledge_project_check_in |
| Handler | OperatelyWeb.Api.Mutations.AcknowledgeProjectCheckIn |
Authentication#
- Requires a valid API token.
- Requires a write-enabled token.
- Read-only tokens return
403.
| Field | Type | Required | Nullable | Default |
|---|
id | id primitive (encoded as string) | Yes | No | - |
Outputs#
| Field | Type | Required | Nullable |
|---|
check_in | project_check_in object | No | Yes |
cURL Example#
Copiedcurl --request POST \
--url "https://app.operately.com/api/external/v1/acknowledge_project_check_in" \
--header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
--header "Content-Type: application/json" \
--data '{"id":"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>"
}
}