action asana_get_statuses_for_object { label: "Get status updates from an object" description: "Returns the compact status update records for all updates on the object." provider: asana method: GET path: "/status_updates" encoding: json input: { type: "object" properties: { created_since: { type: "string" format: "date-time" } parent: { type: "string" } } required: ["parent"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }