delete_latest_goal_update
Delete the update that appears first in a goal's updates list. Only that update can be removed; retrieve its ARI via get_goal first.
Instructions
Delete the latest goal update on a goal. The Townsquare API only supports deleting the most recent update per goal — earlier updates cannot be removed this way. Resolve the update ARI via get_goal (the first item in the updates list) before calling.
If the supplied ID is not the latest update for its goal, the API will reject the call.
Example
delete_latest_goal_update({
goalUpdateId: "ari:cloud:townsquare:...:goal-update/abc"
})Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dryRun | No | If true, return the resolved mutation payload without submitting | |
| goalUpdateId | Yes | Goal update ARI (format: ari:cloud:townsquare:{cloudId}:goal-update/{uuid}). Must be the latest update on its goal. |