Skip to content

goals/update_start_date

Endpoint#

PropertyValue
Typemutation
MethodPOST
Path/api/external/v1/goals/update_start_date
HandlerOperatelyWeb.Api.Goals.UpdateStartDate

Authentication#

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

Inputs#

FieldTypeRequiredNullableDefault
goal_idid primitive (encoded as string)YesNo-
start_datecontextual_date objectYesYes-

Outputs#

FieldTypeRequiredNullable
successbooleanYesYes

cURL Example#

Copied
curl --request POST \
  --url "https://app.operately.com/api/external/v1/goals/update_start_date" \
  --header "Authorization: Bearer ${OPERATELY_API_TOKEN}" \
  --header "Content-Type: application/json" \
  --data '{"goal_id":"value", "start_date":{"date":"2026-01-01", "date_type":"day", "value":"value"}}'

Response Example#

{
  "success": true
}