Skip to content

Goals API: Count children

Endpoint#

PropertyValue
Typequery
MethodGET
Path/api/external/v1/goals/count_children
HandlerOperatelyWeb.Api.Goals.CountChildren

Authentication#

  • Requires a valid API token.
  • Read-only and full-access tokens can execute this query.

Inputs#

FieldTypeRequiredNullableDefault
idid primitive (encoded as string)YesNo-

Outputs#

FieldTypeRequiredNullable
children_countgoal_children_count objectYesNo

cURL Example#

Copied
curl --request GET \
  --url "https://app.operately.com/api/external/v1/goals/count_children?id=value" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}"

Response Example#

{
  "children_count": {
    "check_ins_count": 123,
    "discussions_count": 123,
    "docs_and_files_count": 123
  }
}